Skip to content

Commit

Permalink
fix index
Browse files Browse the repository at this point in the history
  • Loading branch information
flyhigher139 committed Jan 2, 2017
1 parent d97d3ce commit 6963e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/accounts/users.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<tbody>
{% for user in users %}
<tr id="user-{{ user.username }}">
<td>{{ loop.counter }}</td>
<td>{{ loop.index }}</td>
<td><a href="{{ url_for('accounts.edit_user', username=user.username) }}">{{ user.username }}</td>
<td>{{ user.email }}</td>
<td>{{ user.is_active }}</td>
Expand Down

0 comments on commit 6963e31

Please sign in to comment.