|
|
@@ -0,0 +1,34 @@
|
|
|
+{% extends 'base.html' %}
|
|
|
+
|
|
|
+{% block body %}
|
|
|
+ <form name="ConfermaCancellazioneUtente" method="POST">
|
|
|
+ {% csrf_token %}
|
|
|
+
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-header">
|
|
|
+ Opzioni Generali
|
|
|
+ </div>
|
|
|
+ <ul class="list-group list-group-flush">
|
|
|
+ <li class="list-group-item">
|
|
|
+ <div class='form-check'>
|
|
|
+ <input type="checkbox" class="form-check-input" name='ConfermaCancellazioneUtente'
|
|
|
+id='ConfermaCancellazioneUTente'>
|
|
|
+ <label class="form-check-label" for='ConfermaCancellazioneUtente'>Cancella Questo record! La cancellazione è definitiva e non recuperabile!</label>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <br>
|
|
|
+ <div class="btn-group">
|
|
|
+ <input type='submit' class="btn btn-secondary" value='Conferma'>
|
|
|
+ <input type='submit' class="btn btn-primary" name="ritorna" value="Annulla">
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+
|
|
|
+{% endblock %}
|
|
|
+
|
|
|
+{% block bodybottom %}
|
|
|
+
|
|
|
+{% endblock %}
|
|
|
+
|