1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-05-18 08:58:19 +03:00
kangana/application/templates/client/index.mustache
2016-10-11 12:12:01 +07:00

31 lines
516 B
Plaintext

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