You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
{% extends 'base.html' %}
|
|
|
|
{% block body %}
|
|
<div class="box span8">
|
|
<div class="box-header well">
|
|
<h2><i class="icon-arrow-down"></i>Список тем</h2>
|
|
</div>
|
|
<div class="box-content">
|
|
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>id</th>
|
|
<th>Название</th>
|
|
<th>Заголовок</th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for theme in themes %}
|
|
|
|
<tr>
|
|
<td>{{ theme.id }}</td>
|
|
<td>{{ theme.name }}</td>
|
|
<td>{{ theme.main_title }}</td>
|
|
|
|
<td class="center sorting_1">
|
|
<a class="btn btn-info" href="/theme/theme/change/{{ theme.id }}">
|
|
<i class="icon-edit icon-white"></i> Изменить
|
|
</a>
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<a class="btn btn-success" href="/theme/theme/add"><i class="icon-plus-sign icon-white"></i> Добавить тематику</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |