stars and tags instead of shelves, move to social app
[wolnelektury.git] / apps / ajaxable / templates / ajaxable / form.html
1 {% load i18n %}
2 <h1>{{ title }}</h1>
3
4 <form action="{{ request.get_full_path }}" method="post" accept-charset="utf-8" class="cuteform">
5 <ol>
6     <div id="id_{% if form_prefix %}{{ form_prefix }}-{% endif %}__all__"></div>
7     {{ form.as_ul }}
8     <li><input type="submit" value="{{ submit }}"/></li>
9 </ol>
10 </form>
11
12 {% block extra %}{% endblock %}