diff options
author | Joe Sak <joe@joesak.com> | 2011-02-24 22:28:47 -0600 |
---|---|---|
committer | Joe Sak <joe@joesak.com> | 2011-02-24 22:28:47 -0600 |
commit | 2b322a7bf4f64e1c019eff163d90b9cbf52ee501 (patch) | |
tree | 90b01ce124c17349844af3d16283e8cd194eaff9 /app | |
parent | be7763d8d275e711457f89bbf64a54f0cb557186 (diff) | |
download | refinerycms-blog-2b322a7bf4f64e1c019eff163d90b9cbf52ee501.tar.gz refinerycms-blog-2b322a7bf4f64e1c019eff163d90b9cbf52ee501.tar.bz2 refinerycms-blog-2b322a7bf4f64e1c019eff163d90b9cbf52ee501.zip |
ALL CUKES PASS: Show author login in view templates (if author present?)
Diffstat (limited to 'app')
-rw-r--r-- | app/views/admin/blog/posts/_post.html.erb | 2 | ||||
-rw-r--r-- | app/views/blog/posts/_post.html.erb | 2 | ||||
-rw-r--r-- | app/views/blog/shared/_post.html.erb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/views/admin/blog/posts/_post.html.erb b/app/views/admin/blog/posts/_post.html.erb index fa64292..1226082 100644 --- a/app/views/admin/blog/posts/_post.html.erb +++ b/app/views/admin/blog/posts/_post.html.erb @@ -1,7 +1,7 @@ <li class='clearfix record <%= cycle("on", "on-hover") %>' id="<%= dom_id(post) -%>"> <span class='title'> <%= post.title %> - <span class="preview"><%= post.published_at.try(:strftime, '%b %d, %Y') || 'draft' %></span> + <span class="preview"><%= post.published_at.try(:strftime, '%b %d, %Y') || 'draft' %><%= " by #{post.author.username}" if post.author.present? %></span> </span> <span class='actions'> <%= link_to refinery_icon_tag("application_go.png"), blog_post_url(post), diff --git a/app/views/blog/posts/_post.html.erb b/app/views/blog/posts/_post.html.erb index 7600d26..d1c204e 100644 --- a/app/views/blog/posts/_post.html.erb +++ b/app/views/blog/posts/_post.html.erb @@ -9,7 +9,7 @@ <details> <time datetime="<%=l @blog_post.published_at.to_date, :format => :default %>" class='posted_at'> <%= t('blog.shared.posts.created_at', :when => l(@blog_post.published_at.to_date, :format => :short)) %>. - </time> by <%= @blog_post.author.try :login %> + </time><%= " by #{@blog_post.author.username}" if @blog_post.author.present? %> <% if (categories = @blog_post.categories).any? %> <aside class='filed_in'> <%= t('blog.posts.show.filed_in') %> diff --git a/app/views/blog/shared/_post.html.erb b/app/views/blog/shared/_post.html.erb index 2bc71e0..345081a 100644 --- a/app/views/blog/shared/_post.html.erb +++ b/app/views/blog/shared/_post.html.erb @@ -5,7 +5,7 @@ <details> <time datetime="<%=l post.published_at.to_date, :format => :default %>" class='posted_at'> <%= t('blog.shared.posts.created_at', :when => l(post.published_at.to_date, :format => :short)) %>. - </time> + </time><%= " by #{@blog_post.author.username}" if @blog_post.author.present? %> <% if (categories = post.categories).any? %> <aside class='filed_in'> <%= t('filed_in', :scope => 'blog.posts.show') %> |