Skip to main content

Add warnings to your Django Forms easily

Project description

https://badge.fury.io/py/dj-warning-forms.svg https://travis-ci.org/dnmellen/dj-warning-forms.svg?branch=master https://codecov.io/gh/dnmellen/dj-warning-forms/branch/master/graph/badge.svg

Add warnings to your Django Forms easily

https://github.com/dnmellen/dj-warning-forms/blob/master/docs/demo.gif?raw=true

Documentation

The full documentation is at https://dj-warning-forms.readthedocs.io.

Quickstart

Install Django Warning Forms:

pip install dj-warning-forms

Use the form mixin in any form

from django import forms
from dj_warning_forms.forms import WarningFormMixin, FormFieldWarning

from .models import Poll


class PollForm(WarningFormMixin, forms.ModelForm):
    question = forms.CharField(
        max_length=200, widget=forms.TextInput(attrs={"autocomplete": "off"})
    )

    class Meta:
        model = Poll
        fields = "__all__"

    def warning_question(self) -> List[FormFieldWarning]:
        if not self.cleaned_data["question"].endswith("?"):
            return [
                FormFieldWarning(
                    message="Weird question",
                    description="This question does not end with a question mark. Are you sure you want to publish this question?",  # noqa
                )
            ]
        return []

Adding a warning is as simple as adding a method with the warning_ prefix. This method must return a list of FormFieldWarning objects.

Showing warnings in the template

You can find the list of warnings in form.warnings.

{% block content %}
<form action="." method="post">
    {% csrf_token %}
    {{ form }}
    <input type="submit" value="Submit">

    <!-- Customize your form warnings as you wish -->
    {% if form.warnings %}
        <div class="rounded p-2 mt-2 bg-warning">
            <ul>
            {% for warning in form.warnings %}
                <li><b>{{ warning.message }}:</b> {{ warning.description }}</li>
            {% endfor %}
            </ul>
        </div>
    {% endif %}
    <!-- End of form warnings -->
</form>
{% endblock %}

Features

  • No external dependencies

  • Minimal changes needed in your forms

  • Easy to customize

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Development commands

pip install -r requirements_dev.txt
invoke -l

Credits

Tools used in rendering this package:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dj-warning-forms-0.1.0.tar.gz (7.4 kB view hashes)

Uploaded Source

Built Distribution

dj_warning_forms-0.1.0-py2.py3-none-any.whl (6.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page