cover image repo
[redakcja.git] / apps / cover / templates / cover / add_image.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3
4
5 {% block content %}
6 <h1>{% trans "Add image" %}</h1>
7
8 <form method="post">
9 {% csrf_token %}
10 <input type="hidden" name='form_id' value="flickr" />
11 {{ ff.as_p }}
12 <input type="submit" value="{% trans "Load from Flickr" %}" />
13 </form>
14
15
16 <form method="post">
17 {% csrf_token %}
18 {{ form.as_p }}
19 <input type="submit" value="{% trans "Add image" %}" />
20 </form>
21 {% endblock %}