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