mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 14:17:19 +00:00
fixed settings and user management.
This commit is contained in:
@@ -16,15 +16,15 @@
|
||||
<tbody data-link="row" class="rowlink">
|
||||
{% for user in users %}
|
||||
<tr>
|
||||
<td><a href="{{user.id}}/">{{user.id}}</a></td>
|
||||
<td>{{user.username}}</td>
|
||||
<td>{{user.id}}</td>
|
||||
<td><a href="{% url 'user_details' user.id %}">{{user.username}}</a></td>
|
||||
<td>{{user.email}}</td>
|
||||
<td>{{user.is_superuser}}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
<a class="btn btn-default" href="/comic/settings/users/add/" role="button">Add User</a>
|
||||
<a class="btn btn-secondary" href="{% url 'add_users' %}" role="button">Add User</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
{% block script %}
|
||||
|
||||
Reference in New Issue
Block a user