基于Django的图书管理系统【万能模板框架可调整增加】
以下是一个简化的Django图书管理系统的模板框架示例,仅包含基础的模板和样式。
<!-- templates/books/index.html -->
{% extends 'base.html' %}
{% block title %}图书列表{% endblock %}
{% block content %}
<h2>图书列表</h2>
<table>
<thead>
<tr>
<th>ID</th>
<th>书名</th>
<th>作者</th>
<th>出版日期</th>
<th>操作</th>
</tr>
</thead>
<tbody>
{% for book in book_list %}
<tr>
<td>{{ book.id }}</td>
<td>{{ book.title }}</td>
<td>{{ book.author }}</td>
<td>{{ book.publish_date|date:"Y-m-d" }}</td>
<td>
<a href="{% url 'books:edit' book.id %}">编辑</a>
<a href="{% url 'books:delete' book.id %}">删除</a>
</td>
</tr>
{% empty %}
<tr><td colspan="5">没有找到图书</td></tr>
{% endfor %}
</tbody>
</table>
<a href="{% url 'books:create' %}">添加新书</a>
{% endblock %}
<!-- templates/books/create.html -->
{% extends 'base.html' %}
{% block title %}添加图书{% endblock %}
{% block content %}
<h2>添加图书</h2>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">提交</button>
</form>
{% endblock %}
<!-- templates/base.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}基础模板{% endblock %}</title>
<style>
/* 基础样式 */
table {
border-collapse: collapse;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
}
</style>
</head>
<body>
<header>
<h1>图书管理系统</h1>
</header>
{% block content %}
<!-- 内容区块 -->
{% endblock %}
<footer>
<p>版权所有 © 2023</p>
</footer>
</body>
</html>
这个示例展示了如何使用Django模板继承和模板标签来构建一个图书管理系统的基础模板。在实际应用中,你需要在视图中传递相应的上下文数据,并配置相应的URL路由。
评论已关闭