personal_plugin_generator/template_generator/modules/personal_plugin_template/index.html.erb

27 lines
679 B
Plaintext
Raw Normal View History

2021-02-28 09:19:14 +00:00
<table class="table table-hover table-striped projects-index plugin_templates-index dt-responsive nowrap">
<caption><h3>{{widget-title}}</h3></caption>
<thead>
<tr>
2021-03-03 07:44:42 +00:00
parse_again_start
2021-03-01 15:44:52 +00:00
<th class="col-md-1">{{th-col_name_to_show_in_index_page_arr}}</th>
2021-03-03 07:44:42 +00:00
parse_again_end
2021-02-28 09:19:14 +00:00
</tr>
</thead>
<tbody data-level="0" data-list="plugin_templates">
<tr>
2021-03-03 07:44:42 +00:00
parse_again_start
2021-02-28 09:19:14 +00:00
<td>{{col_name_to_show_in_index_page_arr}}</td>
2021-03-03 07:44:42 +00:00
parse_again_end
2021-02-28 09:19:14 +00:00
</tr>
</tbody>
</table>
{{pagination_goes_here}}
<script>
$('table.plugin_templates-index').DataTable({
searching: false,
paging: false,
ordering: false,
info: false
});
</script>