29 lines
694 B
HTML
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 %} |