nfelsen (owner)

Forks

Revisions

gist: 5197 Download_button fork
public
Public Clone URL: git://gist.github.com/5197.git
Text only
1
2
3
4
5
6
7
8
9
<% for section in @sections %>
 
  <h2> <%= section_name(section) %> </h2>
  <% @topics = section.topics.find_all_by_section_id(section.id) %>
 
  <% for topic in @topics %>
      <%= topic.name %> <br>
  <% end %>
<% end %>