Skip to main content

django-legaltext helps to manage legal text versioning.

Project description

Latest PyPI version Latest Travis CI build status

Legaltext is a Django application to help managing legal text versioning (e.g. terms of condition, pr privacy policy). It also supports versioning of the corresponding checkbox labels.

Features

The application consists of multiple parts and helpers:

  • Models to maintain legal texts, their versions and checkboxes

  • Model field to store the accepted version of a legal text (with support to auto-fetched default of current version)

  • Form field to render the widget which outputs the configured checkboxes just using the legal text slug

  • Admin interface to maintain the legal texts, adding new version with prefilling

Installation

requirements.txt

Just add the following PyPI package to your requirements.txt

django-legaltext

settings.py

To activate the application, add the following two packages to your INSTALLED_APPS

INSTALLED_APPS = (
    ...
    'floppyforms',  # needed for widget rendering
    'markymark',  # required for markdown rendering
    'legaltext',
)

urls.py

To register the url to output the legal texts, add the following to your urls.py.

urlpatterns = [
    ...
    url(r'^legaltext/', include('legaltext.urls')),
]

Usage

Please refer to the examples to learn how to use the application.

You just need to add a new model field to your models and set the correct formfield in the corresponding forms.

class YourModel(models.Model):
    ...

    accepted_legaltext = LegalTextField('some-unique-slug')
class YourForm(forms.ModelForm):

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.fields['accepted_legaltext'] = LegalTextFormField('some-unique-slug')

Make sure that you use the same slug on both (model and form) field.

Customization

There are some more settings you can set to change the applcation

  • LEGALTEXT_ANCHOR_CLASS Add an additional css class the the rendered anchor-span when using [anchor:foo]

  • LEGALTEXT_VIEW_TEMPLATE Change the template which is used to in the view to output the legal text

  • LEGALTEXT_VIEW_TEMPLATE_OVERRIDES Choose a different template to use in views for specific slugs

  • LEGALTEXT_WIDGET_TEMPLATE Change the template which is used to in the widget to output the checkboxes

  • LEGALTEXT_WIDGET_TEMPLATE_OVERRIDES Choose a different template to use in widget for specific slugs

  • LEGALTEXT_WIDGET_ATTRS Add extra attributes to checkbox input elements

Resources

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

django-legaltext-0.2.0.tar.gz (13.5 kB view details)

Uploaded Source

Built Distribution

django_legaltext-0.2.0-py2.py3-none-any.whl (17.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-legaltext-0.2.0.tar.gz.

File metadata

File hashes

Hashes for django-legaltext-0.2.0.tar.gz
Algorithm Hash digest
SHA256 173bcba56a66f0d2c4721c84378f0c9f5338f515bb7789765d008678c44ffd64
MD5 d93a3c9a61caae9bfc6133b17f792604
BLAKE2b-256 80757e20a03536e763dbe2d5e37d8ea6043fbfb2cf12b92d471f626643dc1851

See more details on using hashes here.

File details

Details for the file django_legaltext-0.2.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_legaltext-0.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 a5e35b9fe793d41c0c9161e7b6f98519e383fad405986f5afe8127cef1f9e92c
MD5 5958ab89639a336d406220eed332015a
BLAKE2b-256 c19ab2db0d7674344c7e37fae383f83cc7984cd40ec6c0b216c04c1d0efee8b2

See more details on using hashes here.

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