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.
55 lines
1.8 KiB
55 lines
1.8 KiB
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<div class="container">
|
|
<a class="btn btn-success" href="/user/add/">
|
|
<span class="glyphicon glyphicon-plus-sign" aria-hidden="true"></span>
|
|
新键员工</a>
|
|
<div class="bs-example" data-example-id="panel-without-body-with-table">
|
|
<div class="panel panel-default">
|
|
<!-- Default panel contents -->
|
|
<div class="panel-heading">
|
|
<span class="glyphicon glyphicon-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>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for obj in queryset %}
|
|
<tr>
|
|
<th scope="row">{{ obj.id }}</th>
|
|
<td>{{ obj.name }}</td>
|
|
<td>{{ obj.password }}</td>
|
|
<td>{{ obj.get_gender_display }}</td>
|
|
<td>{{ obj.account }}</td>
|
|
<td>{{ obj.age }}</td>
|
|
<td>{{ obj.create_time|date:"Y-m-d " }}</td>
|
|
<td>{{ obj.depart.title}}</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>
|
|
</div>
|
|
<ul class="pagination">
|
|
{{ page_string }}
|
|
</ul>
|
|
</div>
|
|
{% endblock %} |