forked from prlbkj9i7/wzy
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.
23 lines
728 B
23 lines
728 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Django医院在线挂号系统-选择科室</title>
|
|
<link rel="stylesheet" href="/static/css/choosedepartment.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>请选择部门</h1>
|
|
<div class="department-grid">
|
|
{% for department in department_list %}
|
|
<div class="department-box">
|
|
<button class="department-button" onclick="location.href='/choosedoctorandtime/{{ department.id }}/'">
|
|
{{ department.name }}</button>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|