1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-08 01:24:23 +03:00
kangana/application/templates/client/index.mustache

31 lines
516 B
Plaintext
Raw Normal View History

2016-10-11 08:12:01 +03:00
<div class="groupform">
{{{groups}}}
</div>
2014-02-02 05:25:58 +02:00
{{#show_create}}
2016-10-11 08:12:01 +03:00
<p>{{{link_new}}}</p>
2014-02-02 05:25:58 +02:00
{{/show_create}}
2016-10-11 08:12:01 +03:00
{{#content}}
2014-02-02 05:25:58 +02:00
<div class="hyphenate">
2016-10-11 08:12:01 +03:00
{{{.}}}
2014-02-02 05:25:58 +02:00
</div>
2016-10-11 08:12:01 +03:00
{{/content}}
2014-02-02 05:25:58 +02:00
<table class="table">
2016-10-11 08:12:01 +03:00
<thead>
{{#get_header}}
<th>{{.}}</th>
{{/get_header}}
</thead>
<tbody>
2014-02-02 05:25:58 +02:00
{{#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}}
2016-10-11 08:12:01 +03:00
</tbody>
2014-02-02 05:25:58 +02:00
</table>