|
{% extends "corbo/unsubscription.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% blocktrans with object.category as category %}
|
|
Unsubscription from {{ category }}
|
|
{% endblocktrans %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="unsubscription">
|
|
{% blocktrans with object.category as category and object.get_identifier_display as identifier %}
|
|
Are you sure you want to unsubscribe {{ identifier }} from "{{ category }}"?
|
|
{% endblocktrans %}
|
|
<form method='POST'>
|
|
{% csrf_token %}
|
|
<button>{% trans "Unsubscribe" %}</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|