Cover images niceties.
[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
9 <form method="post">{% csrf_token %}
10 <input type="hidden" name='form_id' value="flickr" />
11 <table class='editable'><tbody>
12     {{ ff.as_table }}
13     <tr><td></td><td><button type="submit">{% trans "Load from Flickr" %}</button></td></tr>
14 </tbody></table>
15 </form>
16
17
18 <form method="post">{% csrf_token %}
19 <table class='editable'><tbody>
20     {{ form.as_table }}
21     <tr><td></td><td><button type="submit">{% trans "Add image" %}</button></td></tr>
22 </tbody></table>
23 </form>
24
25
26 {% endblock %}