simple_crm/app/views/admin/all_page/_all_pages.html.erb

30 lines
661 B
Plaintext

<% if @all_pages.blank? %>
<div class="callout callout-warning">
<h4>Brak wpisów</h4>
<p>Dla kategorii Strony.</p>
</div>
<% else %>
<table class="table table-bordered">
<tbody>
<tr>
<th style="width: 10px">#</th>
<th>Nazwa</th>
<th>Tytuł</th>
<th>Rodzaj</th>
<th>Data utworzenia</th>
<th style="width: 80px">Akcje</th>
</tr>
<% for ap in @all_pages %>
<tr>
<td><%= ap.name %></td>
<td><%= ap.title %></td>
<td><%= ap.type_of %></td>
<td><%= ap.updated_at %></td>
<td></td>
</tr>
<% end %>
</tbody>
</table>
<% end %>