Quick and simple django templatetags for displaying forms.
Installation
pip install django-standard-form
add 'standard_form' to your INSTALLED_APPS
Usage
Most basic example:
{% load standard_form %}
<form action="" method="post" class="frm">
{% csrf_token %}
<fieldset class="frm-horizontal">
{% standard_form form %}
{% standard_submit %}
</fieldset>
</form>
Rendering fields individually:
<form action="" method="post" class="frm">
{% csrf_token %}
<fieldset class="frm-horizontal">
<ol>
<li>{% standard_field form.field_name_one %}</li>
</ol>
</fieldset>
<fieldset class="frm-vertical">
<ol>
<li>{% standard_field form.field_name_two %}</li>
</ol>
{% standard_submit %}
</fieldset>
</form>
Rendering widgets individually:
<form action="" method="post" class="frm">
{% csrf_token %}
<fieldset class="frm-horizontal">
<ol>
<li>
<label for="id_{{ form.field_name_one.name }}">My label or other stuff</label>
<div class="field">{% standard_widget form.field_name_one %}</div>
</li>
<li>
<label class="empty"></label>
<div class="field"><input type="submit" class="btn" value="{% trans 'Go' %}" /></div>
</li>
</ol>
</fieldset>
</form>
All available options:
{% standard_field form.field_name_one 'no_required no_required_helper no_help_text no_error_text' custom_class='input-block' placeholder='This one has all the available options' label='My label' %}
Release files for django-standard-form 1.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-standard-form-1.1.1.tar.gz | 7.5 kB | Details |
Release files / django-standard-form-1.1.1.tar.gz
| Download URL | django-standard-form-1.1.1.tar.gz |
|---|---|
| Size | 7.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
33d338e891ecf47ce2c6c892261ec2d62ae763c6b65a216e04edd9e69ccce3e4
|
|
BLAKE2b-256 checksum How to use checksums |
e582cf78f0b7a46a938def87b8d3ed30ca284a4f6f31c3220f74918abe7c6cf9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |