diff options
author | Philip Arndt <parndt@gmail.com> | 2010-11-23 12:21:40 +1300 |
---|---|---|
committer | Philip Arndt <parndt@gmail.com> | 2010-11-23 12:21:40 +1300 |
commit | 9b7cc770a2b6df6d947af3386fe99b9d1a97d648 (patch) | |
tree | ca490701c989244964cd1ed36b63eb18365dc687 /app/views | |
parent | 97101633ca5f0a94560d18adc0df41ca8f60eed7 (diff) | |
download | refinerycms-blog-9b7cc770a2b6df6d947af3386fe99b9d1a97d648.tar.gz refinerycms-blog-9b7cc770a2b6df6d947af3386fe99b9d1a97d648.tar.bz2 refinerycms-blog-9b7cc770a2b6df6d947af3386fe99b9d1a97d648.zip |
Allow refinery users with access to the blog to see the blog posts when they are draft. Closes GH-19
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/blog/posts/_post.html.erb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/blog/posts/_post.html.erb b/app/views/blog/posts/_post.html.erb index b3efbe9..6fb8e64 100644 --- a/app/views/blog/posts/_post.html.erb +++ b/app/views/blog/posts/_post.html.erb @@ -26,6 +26,7 @@ <span class="st_sharethis" displayText="ShareThis"></span> <% end %> </article> +<%= render :partial => '/shared/draft_page_message' unless @blog_post.nil? or @blog_post.live? -%> <% if next_or_previous?(@blog_post) -%> <nav id="next_prev_article"> <%= render 'nav' %> |