diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/views/admin/blog/_submenu.html.erb | 7 | ||||
-rw-r--r-- | app/views/blog/shared/_post.html.erb | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/app/views/admin/blog/_submenu.html.erb b/app/views/admin/blog/_submenu.html.erb index 246488a..5c93891 100644 --- a/app/views/admin/blog/_submenu.html.erb +++ b/app/views/admin/blog/_submenu.html.erb @@ -24,7 +24,12 @@ <ul class='collapsible_menu'> <li> - <%= link_to t('.comments.title'), '#', + <% if BlogComment.unmoderated.any? %> + <% title = t('.comments.title_with_count', :new_count => BlogComment.unmoderated.size) %> + <% else %> + <% title = t('.comments.title') %> + <% end %> + <%= link_to title, '#', :class => 'comments_icon' %> </li> <li> diff --git a/app/views/blog/shared/_post.html.erb b/app/views/blog/shared/_post.html.erb index d8194d3..56ac89c 100644 --- a/app/views/blog/shared/_post.html.erb +++ b/app/views/blog/shared/_post.html.erb @@ -1,4 +1,4 @@ -<li> +<li class='clearfix'> <h2><%= link_to post.title, blog_post_url(post) %></h2> <p class='posted_at'> <%= t('blog.shared.posts.created_at', :when => post.created_at.strftime('%d %B %Y')) %> |