41 lines
1.5 KiB
Plaintext
41 lines
1.5 KiB
Plaintext
<table class="table main-list">
|
|
<thead>
|
|
<tr class="sort-header">
|
|
<% @table_fields.each do |f| %>
|
|
<%= thead(f) %>
|
|
<% end %>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @tables.each do |table| %>
|
|
<tr id="table_<%= table.id.to_s %>">
|
|
<td>
|
|
<a href="<%= admin_universal_table_path(table) %>"><%= table.title %></a>
|
|
<div class="quick-edit">
|
|
<ul class="nav nav-pills">
|
|
<% if can_edit_or_delete?(table) %>
|
|
<li><a href="<%= edit_admin_universal_table_path(table) %>"><%= t(:edit) %></a></li>
|
|
<li><a href="<%= admin_universal_table_path(table) %>" class="delete text-error" data-method="delete" data-confirm="Are you sure?"><%= t(:delete_) %></a></li>
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<%= table.created_at.strftime("%Y-%m-%d") %>
|
|
</td>
|
|
<td>
|
|
<%= table.table_entries.count %>
|
|
</td>
|
|
<td>
|
|
<form action="/admin/universal_tables/import_data_from_excel" method="post" enctype="multipart/form-data" class="import_from_excel_form">
|
|
<%= hidden_field_tag :authenticity_token, form_authenticity_token %>
|
|
<input type="file" name="import_data" />
|
|
<button class="btn btn-primary btn-small"><i class="icons-upload"></i></button>
|
|
<input type="hidden" name="universal_table_id" value="<%= table.id.to_s %>" />
|
|
<a href="<%= admin_universal_table_export_structure_path(table, :format => "xlsx") %>"><%= t("universal_table.export_structure") %></a>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table> |