26 lines
927 B
HTML
26 lines
927 B
HTML
{% extends "base.html" %}
|
|
{% block body_class %}themed-bg{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="card" style="border:1px solid #fecaca; background:#fef2f2;">
|
|
<h1 class="page-title" style="color:#991b1b;">Delete All Illustrations</h1>
|
|
<p class="lead" style="color:#7f1d1d;">
|
|
This will permanently delete <strong>all</strong> illustration records.
|
|
Export a backup first if you might need to restore.
|
|
</p>
|
|
|
|
<form method="post" style="margin-top:12px;">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="confirm" value="yes">
|
|
<div class="result-toolbar">
|
|
<div class="rt-left"></div>
|
|
<div class="rt-right">
|
|
<a class="btn btn-secondary" href="{% url 'settings_home' %}">Cancel</a>
|
|
<button class="btn btn-danger" type="submit">Delete Everything</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |