Files
yaric359/templates/pages/activities/index.html
2019-01-04 16:43:39 +05:00

29 lines
694 B
HTML

{% extends 'base.html' %}
{% block content %}
<div class="container">
<table class="table">
<thead>
<tr>
<th scope="col">
Id
</th>
<th scope="col">
Имя
</th>
</tr>
</thead>
<tbody>
{% for item in data %}
<tr>
<th scope="row">
{{ item.id }}
</th>
<td>
{{ item.name }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}