You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{% extends 'layout.html' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
|
|
<div style="margin-bottom: 10px">
|
|
|
|
<a class="btn btn-success" href="/user/model/form/add/">
|
|
|
|
<span class="glyphicon glyphicon-plus-sign" aria-hidden="true"></span>
|
|
|
|
添加用户
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div style="float: right;width: 300px;">
|
|
|
|
<form method="get">
|
|
|
|
<div class="input-group">
|
|
|
|
<input type="text" name="q" class="form-control" placeholder="关键字"
|
|
|
|
value="{{ search_data }}">
|
|
|
|
<span class="input-group-btn">
|
|
|
|
<button class="btn btn-default" type="submit">
|
|
|
|
<span class="glyphicon glyphicon-search" aria-hidden="true"></span>
|
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<!-- Default panel contents -->
|
|
|
|
<div class="panel-heading">
|
|
|
|
<span class="glyphicon glyphicon-th-list" aria-hidden="true"></span>
|
|
|
|
用户列表
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Table -->
|
|
|
|
<table class="table table-bordered">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>姓名</th>
|
|
|
|
<th>密码</th>
|
|
|
|
<th>年龄</th>
|
|
|
|
<th>余额</th>
|
|
|
|
<th>注册时间</th>
|
|
|
|
<th>性别</th>
|
|
|
|
<th>操作</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for obj in queryset %}
|
|
|
|
<tr>
|
|
|
|
<th>{{ obj.id }}</th>
|
|
|
|
<td>{{ obj.name }}</td>
|
|
|
|
<td>{{ obj.password }}</td>
|
|
|
|
<td>{{ obj.age }}</td>
|
|
|
|
<td>{{ obj.account }}</td>
|
|
|
|
<td>{{ obj.create_time|date:"Y-m-d" }}</td>
|
|
|
|
<td>{{ obj.get_gender_display }}</td>
|
|
|
|
|
|
|
|
<td>
|
|
|
|
<a class="btn btn-primary btn-xs" href="/user/{{ obj.id }}/edit/">编辑</a>
|
|
|
|
<a class="btn btn-danger btn-xs" href="/user/{{ obj.id }}/delete/">删除</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<ul class="pagination">
|
|
|
|
{{ page_string }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|