added containers for the rest of hte pages after last commit.

This commit is contained in:
2015-07-30 10:49:57 +01:00
parent 231fcb4c27
commit af1ba13d86
3 changed files with 56 additions and 52 deletions

View File

@@ -13,29 +13,29 @@
{% endblock %}
{% block content %}
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>#</th>
<th>Username</th>
<th>Email</th>
<th>Superuser</th>
</tr>
</thead>
<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.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>
<div class="container">
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>#</th>
<th>Username</th>
<th>Email</th>
<th>Superuser</th>
</tr>
</thead>
<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.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>
</div>
{% endblock %}
{% block script %}