use html5 placeholder and hide labels,
[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"
5         class="cuteform{% if placeholdize %} hidelabels{% endif %}">
6 <ol>
7     <div id="id_{% if form_prefix %}{{ form_prefix }}-{% endif %}__all__"></div>
8     {{ form.as_ul }}
9     <li><input type="submit" value="{{ submit }}"/></li>
10 </ol>
11 </form>
12
13 {% block extra %}{% endblock %}