NDOJ/templates/user/import/table_csv.html
2021-07-28 17:58:42 -05:00

24 lines
568 B
HTML

<thead>
<tr>
<th>{{_('ID')}}</th>
<th>{{_('Username')}}</th>
<th>{{_('Password')}}</th>
<th>{{_('Name')}}</th>
<th>{{_('School')}}</th>
<th>{{_('Email')}}</th>
<th>{{_('Organizations')}}</th>
</tr>
</thead>
<tbody>
{% for i in data %}
<tr>
<td>{{loop.index}}</td>
<td>{{i.username}}</td>
<td>{{i.password}}</td>
<td>{{i.name}}</td>
<td>{{i.school}}</td>
<td>{{i.email}}</td>
<td>{{i.organizations}}</td>
</tr>
{% endfor %}
</tbody>