From c2ed7fd46f2bc00f249020143312c028aba571ba Mon Sep 17 00:00:00 2001 From: Ricky Barrette Date: Sun, 27 Jan 2013 01:34:06 -0500 Subject: [PATCH] Added admin lables --- app/views/posts/show.html.erb | 2 +- app/views/topics/show.html.erb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/posts/show.html.erb b/app/views/posts/show.html.erb index 1b1662a..ad73476 100755 --- a/app/views/posts/show.html.erb +++ b/app/views/posts/show.html.erb @@ -19,7 +19,7 @@ <%= @post.user.username %> <%= image_tag @post.user.gravatar_url %> -

<%= "Administrator" if @post.user.admin? %>

+

<%= "Administrator" if @post.user.admin? %>

Posts <%= @post.user.posts_count %>
Registered <%=l @post.user.created_at %>
diff --git a/app/views/topics/show.html.erb b/app/views/topics/show.html.erb index 79311cc..4115bd8 100755 --- a/app/views/topics/show.html.erb +++ b/app/views/topics/show.html.erb @@ -21,7 +21,7 @@ <%= post.user.username %> <%= image_tag post.user.gravatar_url %> -

<%= "Administrator" if post.user.admin? %>

+

<%= "Administrator" if post.user.admin? %>

Posts <%= post.user.posts_count %>
Registered <%=l post.user.created_at %>