]> git.0d.be Git - panikdb.git/blob - panikdb/templates/emissions/soundfile_confirm_delete.html
warn about statistics loss
[panikdb.git] / panikdb / templates / emissions / soundfile_confirm_delete.html
1 {% extends "base.html" %}
2
3 {% block appbar %}
4 <h2>{{ object.episode.emission.title }} — {{ object.episode.title }}</h2>
5 <span><a href="../..">Retourner à l'épisode</a></span>
6 {% endblock %}
7
8 {% block content %}
9
10 <p>
11 Vous allez supprimer le son
12 <a href="{{ object.file.url }}">{{ object.file.name }}</a>.
13 </p>
14
15 <p><strong>
16 Cela perdra toutes les statistiques (téléchargements et lectures en ligne)
17 concernant ce fichier.
18 </strong></p>
19
20 <form method="post">
21 {% csrf_token %}
22 <button>Confirmer la suppression</button>
23 <button onclick="window.location = '../..'; return false;">Annuler</button>
24 </form>
25
26
27 {% endblock %}