Projet

Général

Profil

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

root / corbo / templates / corbo / subscriptions_import_form.html @ b60770ed

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

    
4
{% block breadcrumb %}
5
{{ block.super }}
6
<a href='{% url "view_category" slug=category.slug %}'>{{ category }}</a>
7
{% endblock %}
8

    
9
{% block appbar %}
10
<h2>{% trans "Import subscriptions" %}</h2>
11
{% endblock %}
12

    
13

    
14
{% block content %}
15
<form method="post" enctype="multipart/form-data">
16
  {% csrf_token %}
17
  {{ form.as_p }}
18
<div class="buttons">
19
  <button>{% trans "Save" %}</button>
20
  <a href="{% url "view_category" slug=category.slug %}" class="cancel">{% trans "Cancel" %}</a>
21
</div>
22
</form>
23
{% endblock %}
(10-10/12)