Code layout change.
[wolnelektury.git] / src / social / templates / social / sets_form.html
1 {% load i18n %}
2 {% load ssi_csrf_token from ssify %}
3 <h1>{{ title }}</h1>
4
5 <form action="{% url 'social_unlike_book' view_kwargs.slug %}" method="post" accept-charset="utf-8"
6         class="cuteform{% if placeholdize %} hidelabels{% endif %}">
7 {% ssi_csrf_token %}
8     <input type="submit" value="{% trans "Remove from my shelf" %}"/>
9 </form>
10
11 <form action="{{ request.get_full_path }}" method="post" accept-charset="utf-8"
12         class="cuteform{% if placeholdize %} hidelabels{% endif %}">
13 {% ssi_csrf_token %}
14 <ol>
15     <div id="id___all__"></div>
16     {{ form.as_ul }}
17     <li><input type="submit" value="{{ submit }}"/></li>
18 </ol>
19 </form>