mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-10 23:45:48 -06:00
25 lines
961 B
Twig
25 lines
961 B
Twig
<table class="table table-hover sortable">
|
|
<thead>
|
|
<tr>
|
|
<th class="hidden-sm hidden-xs" data-defaultsort="disabled"> </th>
|
|
<th data-defaultsign="az">{{ trans('list.name') }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for category in result.categories %}
|
|
<tr>
|
|
<td class="hidden-sm hidden-xs" style="width:10%;">
|
|
<div class="btn-group btn-group-xs">
|
|
<a class="btn btn-default btn-xs" href="{{ route('categories.edit',category.id) }}"><i class="fa fa-fw fa-pencil"></i></a>
|
|
<a class="btn btn-danger btn-xs" href="{{ route('categories.delete',category.id) }}"><i class="fa fa-fw fa-trash-o"></i></a>
|
|
</div>
|
|
</td>
|
|
<td data-value="{{ category.name }}">
|
|
<a href="{{ route('categories.show',category.id) }}">{{ category.name }}</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
|
|
</table>
|