Guest User

Untitled

a guest
Apr 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <p>
  2. <b>Forum:</b>
  3. <%=h @forum.name %> - <%=h @forum.description %>
  4. </p>
  5.  
  6. <% unless @forum.topics.empty? %>
  7. <h2>Topics</h2>
  8. <% @forum.topics.each do |topic| %>
  9. <b><%= link_to topic.subject, [@forum, topic] %></b><br />
  10. <% end %>
  11. <% end %>
  12.  
  13. <h2>New Post</h2>
  14. <%= render :partial => @topic = Topic.new, :locals => { :button_name => 'Create' } %>
  15.  
  16. <%= link_to 'Edit', edit_forum_path(@forum) %> |
  17. <%= link_to 'Back', forums_path %>
Add Comment
Please, Sign In to add comment