drought_backup/users/templates/user/user_delete.html

24 lines
611 B
HTML
Raw Normal View History

2018-12-29 01:11:57 +00:00
{% extends 'dashboard/base.html' %}
{% load static %}
{% load bootstrap3 %}
{% block breadcrumb %}{% endblock %}
{% block content %}
<div class="ibox">
<div class="ibox-title">
2018-12-29 06:49:25 +00:00
<h5>删除用户</h5>
2018-12-29 01:11:57 +00:00
</div>
2018-12-29 06:49:25 +00:00
<div class="list-group-item">
<div class="row">
<form method="post">{% csrf_token %}
<p>您确定要删除用户 "{{ object }}"吗?</p>
<input type="submit" value="Confirm">
<a href="{% url 'user-list' %}" class="">取消</a>
2018-12-29 01:11:57 +00:00
2018-12-29 06:49:25 +00:00
</form>
2018-12-29 01:11:57 +00:00
</div>
2018-12-29 06:49:25 +00:00
</div>
2018-12-29 01:11:57 +00:00
</div>
{% endblock %}