23 lines
536 B
HTML
23 lines
536 B
HTML
{% extends 'dashboard/base.html' %}
|
|
{% load static %}
|
|
{% load bootstrap3 %}
|
|
{% block breadcrumb %}{% endblock %}
|
|
{% block content %}
|
|
<div class="ibox">
|
|
<div class="ibox-title">
|
|
<h5>添加新用户</h5>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-12" style="margin-top: 20px;">
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<p>Are you sure you want to delete "{{ object }}"?</p>
|
|
<input type="submit" value="Confirm">
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|