1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-04 23:54:25 +03:00
kangana/application/templates/index.mustache

29 lines
446 B
Plaintext
Raw Normal View History

{{#show_create}}
{{{link_new}}}
{{/show_create}}
<div class="hyphenate">
{{{content}}}
</div>
2016-10-11 08:12:01 +03:00
<table class="table">
<thead>
2016-11-09 11:08:20 +02:00
<tr>
2016-10-11 08:12:01 +03:00
{{#get_header}}
<th>
{{.}}
</th>
{{/get_header}}
2016-11-09 11:08:20 +02:00
</tr>
2016-10-11 08:12:01 +03:00
</thead>
<tbody>
{{#get_items}}
2016-10-11 08:12:01 +03:00
<tr>
<td class="hyphenate">{{{view_link}}}</td>
{{#edit_link}}
2016-10-11 08:12:01 +03:00
<td>{{{edit_link}}}</td>
<td>{{{delete_link}}}</td>
{{/edit_link}}
2016-10-11 08:12:01 +03:00
</tr>
{{/get_items}}
2016-10-11 08:12:01 +03:00
<tbody>
</table>