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 cf043e4621 Fix template bug with offer upsell message 13 yıl önce
..
oscar Fix template bug with offer upsell message 13 yıl önce
README.rst Add mark-up guide for forms 13 yıl önce

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.