Fixed info bug on page

This commit is contained in:
Artyom Kravchenko
2021-03-06 01:36:19 +03:00
parent 5909750fcc
commit fe944f4875
2 changed files with 14 additions and 4 deletions

View File

@@ -22,13 +22,13 @@
<h6 class="table-title">Список сотрудников с правами инженера</h6>
<table class="light-table">
<thead>
<th>ID</th>
<th>Email</th>
<th>Name</th>
</thead>
<tbody>
{% for engineer in engineers %}
<tr>
<td>{{ engineer.id }}</td>
<td>{{ engineer.email }}</td>
<td>{{ engineer.name }}</td>
</tr>
{% endfor %}