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

29 lines
446 B
Plaintext

{{#show_create}}
{{{link_new}}}
{{/show_create}}
<div class="hyphenate">
{{{content}}}
</div>
<table class="table">
<thead>
<tr>
{{#get_header}}
<th>
{{.}}
</th>
{{/get_header}}
</tr>
</thead>
<tbody>
{{#get_items}}
<tr>
<td class="hyphenate">{{{view_link}}}</td>
{{#edit_link}}
<td>{{{edit_link}}}</td>
<td>{{{delete_link}}}</td>
{{/edit_link}}
</tr>
{{/get_items}}
<tbody>
</table>