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 5c566ef842 Textareas in dashboard now have wysihtml widget 13 anni fa
..
oscar Textareas in dashboard now have wysihtml widget 13 anni fa
README.rst Add mark-up guide for forms 13 anni fa

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.