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.
59 lines
2.1 KiB
59 lines
2.1 KiB
6 months ago
|
{% extends 'layout.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="container">
|
||
|
|
||
|
<div style="margin-bottom: 10px">
|
||
|
<a class="btn btn-success" href="/movie/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>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for obj in queryset %}
|
||
|
<tr>
|
||
|
<th>{{ obj.id }}</th>
|
||
|
<td>{{ obj.name }}</td>
|
||
|
<td>{{ obj.depart.title }}</td>
|
||
|
<td>
|
||
|
<a class="btn btn-primary btn-xs" href="/movie/{{ obj.id }}/edit/">编辑</a>
|
||
|
<a class="btn btn-danger btn-xs" href="/movie/{{ obj.id }}/delete/">删除</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|