django_project_demo/app/templates/user_list.html
2024-08-24 03:25:23 +00:00

63 lines
2.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'layout.html' %}
{% block content %}
<div class="container">
<div style="margin-bottom:10px">
<a class="btn btn-success" href="/user/add/">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span>
新建用户(最原始方式)
</a>
<a class="btn btn-success" href="/user/add_ModelForm/">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span>
新建用户ModelForm组件方式
</a>
</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 item in queryset%}
<tr>
<th>{{ item.id }}</th>
<td>{{ item.name }}</td>
<td>{{ item.get_gender_display }}</td>
<th>{{ item.age }}</th>
<td>{{ item.account }}</td>
<td>{{ item.create_time|date:"Y年m月d日" }}</td>
<td>{{ item.depart.title }}</td>
<td>
<a class="btn btn-primary btn-xs" href="/user/{{ item.id }}/edit_ModelForm/">修改</a>
<a class="btn btn-danger btn-xs" href="/user/{{ item.id }}/delete_ModelForm/">删除</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<ul class="pagination">
{{ page_nav }}
</ul>
</div>
{% endblock %}