update studentmanagement

This commit is contained in:
lzh
2020-08-04 10:48:15 +08:00
parent 78a498d7b7
commit 335b2c0380
61 changed files with 14284 additions and 0 deletions
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<br>
{% if lenght %}
<a href="/student/logout/">退出</a><br>
<h1 style="color: blue">欢迎{{ status}},来到学生信息管理系统</h1><br>
<h3 style="color: green">请选择你要执行的功能</h3>
<a href="{% url 'student:add' %}">增加学生信息</a><br>
<a href="{% url 'student:select' %}">查询学生信息</a><br>
<a href="{% url 'student:delete' %}">删除学生信息</a><br>
<a href="{% url 'student:update' %}">修改学生信息</a><br>
{% else %}
<a href="student/login/">登录</a><br>
<a href="student/regist/">注册</a><br>
{% endif %}
</body>
</html>