Files
fetsite/app/views/themen/_attachment_list.html.erb
Andreas Stephanides 667f5b680e attachments view
2014-05-02 18:55:38 +02:00

13 lines
171 B
Plaintext

<table>
<% attachment_list.each do |a| %>
<tr>
<td>
<%= render a %>
</td>
<td>
<%= link_to "Edit", edit_thema_attachment_path(a.thema,a) %>
</td>
</tr>
<% end %>
</table>