public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
Search Repo:
Michael Hartl (author)
Mon Feb 25 19:33:31 -0800 2008
commit  e235a9d4c0c08a68ae796aaee2528b9d13aa86b5
tree    b6c1dd7fec8c48da5ed84bfc197b65826ff9dc25
parent  a03c18218a6cb76b9a93ef541b434022425ef008
insoshi / app / views / topics / show.html.erb
100644 24 lines (18 sloc) 0.333 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<p>
  <b>Forum:</b>
  <%=h @topic.forum_id %>
</p>
 
<p>
  <b>Person:</b>
  <%=h @topic.person_id %>
</p>
 
<p>
  <b>Name:</b>
  <%=h @topic.name %>
</p>
 
<p>
  <b>Posts count:</b>
  <%=h @topic.forum_posts_count %>
</p>
 
 
<%= link_to 'Edit', edit_forum_topic_path(@forum, @topic) %> |
<%= link_to 'Back', forum_topics_path(@forum) %>