1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-05 08:04:27 +03:00
kangana/application/templates/course/index.mustache
Alexander Yakovlev f918e54768 Layout changes
There's a weird bug that layout stays the same
2016-10-07 12:38:43 +07:00

30 lines
536 B
Plaintext

{{#show_create}}
{{{link_new}}}
{{/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>
<td>{{client_count}}</td>
{{#edit_link}}
<td>{{{edit_link}}}</td>
<td>{{{delete_link}}}</td>
{{/edit_link}}
</tr>
{{/get_items}}
</tbody>
</table>
{{{get_paging}}}