Changed users list to not show sequential number anymore

(to be consistent with consumers)
This commit is contained in:
Sebastian Henschel 2016-11-27 08:50:34 +01:00
parent d3bd747ad9
commit d10387bd1c

View File

@ -31,17 +31,15 @@
<div class="table-responsive">
<table class="table table-hover" id="users-list">
<thead>
<th>#</th>
<th>User ID</th>
<th>User Id</th>
<th>Username</th>
<th>Email</th>
<th>Action</th>
</thead>
<tbody>
{% for user in users %}
{% url 'users-detail' user.email as url_users_detail %}
<tr data-user-id="{{ user.user_id }}">
{% url 'users-detail' user.email as url_users_detail %}
<td>{{ forloop.counter }}</td>
<td><a href="{{ url_users_detail }}">{{ user.user_id }}</td>
<td>{{ user.username }}</td>
<td>{{ user.email }}</td>