Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

hemamaps / django-crispy-forms   python

Repository URL to install this package:

Version: 1.6.0 

/ templates / uni_form / uni_form.html

{% if include_media %}{{ form.media }}{% endif %}
{% if form_show_errors %}
    {% include "uni_form/errors.html" %}
{% endif %}

{% if form_style == "" or form_style %}
    <fieldset class="{{ form_style }}">
        <legend></legend>
{% endif %}

{% for field in form %}
    {% include "uni_form/field.html" %}
{% endfor %}

{% if form_style == "" or form_style %}
    </fieldset>
{% endif %}