Files
fetsite/app/views/fetprofiles/index.html.erb
Andreas Stephanides 1289045e06 FETPROFIL
2013-08-22 12:08:27 +02:00

24 lines
626 B
Plaintext

<h1>Listing fetprofiles</h1>
<ul>
<% @fetprofiles.each do |fetprofile| %>
<li>
<%= %>
<td><%= fetprofile.vorname %></td>
<td><%= fetprofile.nachname %></td>
<td><%= fetprofile.short %></td>
<td><%= fetprofile.fetmailalias %></td>
<td><%= fetprofile.desc %></td>
<td><%= fetprofile.active %></td>
<td><%= link_to 'Show', fetprofile %></td>
<td><%= link_to 'Edit', edit_fetprofile_path(fetprofile) %></td>
<td><%= link_to 'Destroy', fetprofile, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</li>
<% end %>
</ul>
<br />
<%= link_to 'New Fetprofile', new_fetprofile_path %>