You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
David Winterbottom 8b650eff6e Always show "download selected orders" option on order list view пре 13 година
..
oscar Always show "download selected orders" option on order list view пре 13 година
README.rst Add mark-up guide for forms пре 13 година

README.rst

Mark-up guide
=============

Forms
-----

Forms should be marked-up as::

<form method="post" action="." class="form-horizontal">
{% csrf_token %}
{% include 'partials/form_fields.html' %}
<div class="form-actions">
<button class="btn btn-large btn-primary" type="submit">Save</button>
or <a href="{{ some_url }}">cancel</a>
</div>
</form>

The ``.form-actions`` class aligns the buttons with the fields and adds a gray
background.

Alternatively, use::

<form method="post" action="." class="form-horizontal">
{% csrf_token %}
{% include 'partials/form_fields.html' %}
<div class="control-group">
<div class="controls">
<button class="btn btn-large btn-primary" type="submit">Save</button>
or <a href="{{ some_url }}">cancel</a>
</div>
</div>
</form>

The ``.control-group`` class aligns the buttons with the fields.