zeninstall/src/autogen/app/views/sites/_sites_table.html.erb

24 lines
654 B
Plaintext

<%= hidden_field_tag :direction, params[:direction] %>
<%= hidden_field_tag :sort, params[:sort] %>
<table class="table table-striped table-bordered table-condensed sortable">
<thead>
<tr>
<th style="width: 200px;">Nom</th>
<th style="width: 40px;"></th>
</tr>
</thead>
<tbody>
<% @sites.each do |site| %>
<tr>
<td valign="top">
<%= link_to site.name, edit_site_path(site), :remote => true %>
</td>
<td valign="top">
<%= site.description %>
</td>
</tr>
<% end %>
</tbody>
</table>