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.
84 lines
2.5 KiB
84 lines
2.5 KiB
6 months ago
|
{% extends 'Mindex.html' %}
|
||
|
|
||
|
{% block title %}
|
||
|
用户购票管理页面
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="pagetitle" style="display:flex;align-items:center">
|
||
|
<div style="margin-right:auto">
|
||
|
<h1>用户购票管理页</h1>
|
||
|
<nav>
|
||
|
<ol class="breadcrumb">
|
||
|
<li class="breadcrumb-item"><a href="#">管理中心</a></li>
|
||
|
<li class="breadcrumb-item active">用户购票管理页</li>
|
||
|
</ol>
|
||
|
</nav>
|
||
|
</div>
|
||
|
<h5>
|
||
|
{{ nowTime.year}}-{{ nowTime.mon}}-{{ nowTime.day}}
|
||
|
</h5>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<section class="section dashboard">
|
||
|
<div class="row">
|
||
|
<div class="col-lg-12">
|
||
|
|
||
|
<div class="card">
|
||
|
|
||
|
<div class="card-body">
|
||
|
<h5 class="card-title">用户详情页</h5>
|
||
|
|
||
|
<div class="activity">
|
||
|
<div class="col-12">
|
||
|
<div class="card recent-sales overflow-auto">
|
||
|
<div class="card-body">
|
||
|
<table class="table table-borderless">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th scope="col">景区名称</th>
|
||
|
<th scope="col">预约时间</th>
|
||
|
<th scope="col">真实姓名</th>
|
||
|
<th scope="col">身份证号</th>
|
||
|
<th scope="col">联系方式</th>
|
||
|
<th scope="col">操作</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for i in userDetailData %}
|
||
|
<tr>
|
||
|
<td>{{ i.title }}</td>
|
||
|
<td>{{ i.day }}</td>
|
||
|
<td>{{ i.name }}</td>
|
||
|
<td>{{ i.Idcard }}</td>
|
||
|
<td>{{ i.connection }}</td>
|
||
|
<td>
|
||
|
<a href="userFox/?nid={{ i.id }}"><button class="btn btn-primary">修改</button></a>
|
||
|
<a href="delete/?nid={{ i.id }}"><button class="btn btn-danger">删除</button></a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block echarts %}
|
||
|
<script>
|
||
|
|
||
|
</script>
|
||
|
{% endblock %}
|