diff --git a/app/views/forums/index.html.erb b/app/views/forums/index.html.erb
index fd37e29..e867eed 100755
--- a/app/views/forums/index.html.erb
+++ b/app/views/forums/index.html.erb
@@ -22,7 +22,8 @@
| <%= image_tag 'ruby.png' %> |
- <%= link_to forum.title, forum_path(forum) %>
+ <%= link_to forum.title, forum_path(forum) %>
+
<%= forum.description %>
|
<%= forum.topics.size %> |
diff --git a/app/views/forums/show.html.erb b/app/views/forums/show.html.erb
index 305069b..5f41a2d 100755
--- a/app/views/forums/show.html.erb
+++ b/app/views/forums/show.html.erb
@@ -30,8 +30,15 @@
<% @topics.each do |topic| %>
| <%= image_tag 'ruby.png' %> |
-
- <%= link_to topic.title, topic_path(topic) %>
+ |
+ <% if topic.sticky %>
+ Sticky
+ <% end %>
+ <% if topic.locked %>
+ Locked
+ <% end %>
+ <%= link_to topic.title, topic_path(topic) %>
+
by <%= topic.user.username %>
|
<%= topic.posts.size - 1 %> |
diff --git a/app/views/topics/show.html.erb b/app/views/topics/show.html.erb
index 4115bd8..a0ecbea 100755
--- a/app/views/topics/show.html.erb
+++ b/app/views/topics/show.html.erb
@@ -1,6 +1,12 @@
<%= link_to "Back to Forum", forum_path(@topic.forum) %>