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 / errors.html

{% if form.errors and form.non_field_errors %}
    <div id="errorMsg">
        {% if form_error_title %}<h3>{{ form_error_title }}</h3>{% endif %}
        <ol>
            {{ form.non_field_errors|unordered_list }}
        </ol>
    </div>
{% endif %}