public
Description: Canberra Ruby Crew Site #crc
Homepage: http://canberraruby.com
Clone URL: git://github.com/artpop/crc_site.git
crc_site / app / views / topics / index.html.erb
100644 27 lines (22 sloc) 0.582 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
25
26
27
<h1>Listing topics</h1>
 
<table>
  <tr>
    <th>Title</th>
    <th>Description</th>
    <th>Link</th>
    <th>Meeting</th>
  </tr>
 
<% for topic in @topics %>
  <tr>
    <td><%=h topic.title %></td>
    <td><%=h topic.description %></td>
    <td><%=h topic.link %></td>
    <td><%=h topic.meeting_id %></td>
    <td><%= link_to 'Show', topic %></td>
    <td><%= link_to 'Edit', edit_topic_path(topic) %></td>
    <td><%= link_to 'Destroy', topic, :confirm => 'Are you sure?', :method => :delete %></td>
  </tr>
<% end %>
</table>
 
<br />
 
<%= link_to 'New topic', new_topic_path %>