49693121ea
remove unneeded stuff from settings (we still need some in conftest.py for the tests, though) init DB for tests via conftest.py more update algorithm choices give origin zone (if we already know it) to dnstools functions new views: DomainOverview, DeleteDomain unify deletion templates using delete_object.html add django-extensions
16 lines
450 B
HTML
16 lines
450 B
HTML
{% extends "base.html" %}
|
|
{% load bootstrap %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-lg-8">
|
|
<h3>Delete {{ object }}</h3>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<p>Are you sure you want to delete "{{ object }}"?</p>
|
|
<button type="submit" class="btn btn-primary">Confirm</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|