Projet

Général

Profil

Télécharger (555 octets) Statistiques
| Branche: | Tag: | Révision:

root / corbo / templates / corbo / subscription_confirm_delete.html @ d17392b7

1
{% extends "corbo/unsubscription.html" %}
2
{% load i18n %}
3

    
4
{% block title %}{% blocktrans with object.category as category %}
5
Unsubscription from {{ category }}
6
{% endblocktrans %}{% endblock %}
7

    
8
{% block content %}
9
<div class="unsubscription">
10
{% blocktrans with object.category as category and object.get_identifier_display as identifier %}
11
Are you sure you want to unsubscribe {{ identifier }} from "{{ category }}"?
12
{% endblocktrans %}
13
<form method='POST'>
14
  {% csrf_token %}
15
  <button>{% trans "Unsubscribe" %}</button>
16
</form>
17
</div>
18
{% endblock %}
(9-9/11)