Skip to main content

A Mezzanine module for add group-level permission to pages.

Project description

https://pypip.in/v/mezzanine-page-auth/badge.png

Created by Simone Dalla

Overview

Mezzanine Page Auth is Mezzanine module for add group-level permission to Pages.

Full Documentation at: http://mezzanine_page_auth.readthedocs.org/

Dependencies

Mezzanine Page Auth required:

Installation

The easiest method is to install directly from pypi using pip by running the command below, which will also install the required dependencies mentioned above:

$ pip install mezzanine_page_auth

If you prefer, you can download mezzanine-auth-pages and install it directly from source:

$ python setup.py install

Add mezzanine_page_auth to your INSTALLED_APPS setting before all mezzanine apps:

INSTALLED_APPS = (
    # ...
    'mezzanine_page_auth',
    'mezzanine.boot',
    'mezzanine.conf',
    'mezzanine.core',
    # ...
)

You will then want to create the necessary tables. If you are using South for schema migrations, you’ll want to:

$ python manage.py migrate mezzanine_page_auth

Middleware

Enable PageAuthMiddleware middleware in your settings module as follows:

MIDDLEWARE_CLASSES = (
    # ...
    "mezzanine.core.middleware..."
    "mezzanine.pages.middleware..."
    "mezzanine_page_auth.middleware.PageAuthMiddleware",
    # ...
)

The order of MIDDLEWARE_CLASSES is important. You should include the PageAuthMiddleware middleware after other Mezzanine middlewares in the list.

Template Context Processors

Enable page_auth template context processors in your settings module as follows:

TEMPLATE_CONTEXT_PROCESSORS = (
    # ...
    "mezzanine_page_auth.context_processors.page_auth",
)

The order of MIDDLEWARE_CLASSES is important. You should include the PageAuthMiddleware middleware after other Mezzanine middlewares in the list.

Mezzanine Settings

Configure EXTRA_MODEL_FIELDS Mezzanine setting in your settings module as follows:

EXTRA_MODEL_FIELDS = (
    # ...
    (
        "mezzanine.pages.models.Page.groups",
        "ManyToManyField",
        ("auth.Group",),
        {"blank": True, "null": True, "verbose_name": 'groups',
         'symmetrical': False, 'through': "mezzanine_page_auth.PageAuthGroup"},
    ),
    # ...
)

for inject field groups into Mezzanine’s models (reference to Field Injection Mezzanine documantation).

License

Mezzanine Page Auth is BSD licensed.

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

mezzanine-page-auth-0.3.3.tar.gz (39.3 kB view details)

Uploaded Source

Built Distribution

mezzanine_page_auth-0.3.3-py2.py3-none-any.whl (49.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file mezzanine-page-auth-0.3.3.tar.gz.

File metadata

File hashes

Hashes for mezzanine-page-auth-0.3.3.tar.gz
Algorithm Hash digest
SHA256 0af681bca09c70560e7f6da4b0d69165983e9f76539dbd34316bd38e30f6ac4e
MD5 b347b131e1739faf2a5e88bfbd79b341
BLAKE2b-256 189df550cf058b72d66ef501438203347fa60a05dde08bd90f1406d08eace119

See more details on using hashes here.

File details

Details for the file mezzanine_page_auth-0.3.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for mezzanine_page_auth-0.3.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 69f29cb847c73b5994ac8a1a26fccd71f3af784400831fc34bb85ecbb3fa1324
MD5 45f6acdc6c283ca779096d4f25af995e
BLAKE2b-256 8e36a09512e3272c26cabe938c9be839ef0e289868935071fa8df2521b1c4462

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