NDOJ/templates/user/import/table_csv.html

25 lines
568 B
HTML
Raw Normal View History

2021-07-28 22:58:42 +00:00
<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>