Merge branch 'develop' into feature/statistic/backend

This commit is contained in:
Sokurov Idar
2021-03-08 21:07:32 +03:00
3 changed files with 22 additions and 9 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 %}