root/app/views/test1s/index.html.erb @ 1

Revision 1, 357 bytes (checked in by falcon, 17 years ago)

Version one -> initial work from the laptop.

Line 
1<h1>Listing test1s</h1>
2
3<table>
4  <tr>
5  </tr>
6
7<% for test1 in @test1s %>
8  <tr>
9    <td><%= link_to 'Show', test1 %></td>
10    <td><%= link_to 'Edit', edit_test1_path(test1) %></td>
11    <td><%= link_to 'Destroy', test1, :confirm => 'Are you sure?', :method => :delete %></td>
12  </tr>
13<% end %>
14</table>
15
16<br />
17
18<%= link_to 'New test1', new_test1_path %>
Note: See TracBrowser for help on using the browser.