Skip to main content

Simple fancybox modal for Django

Project description

This is a Django integration of Fancybox.

https://img.shields.io/pypi/v/django-fancybox.svg https://img.shields.io/pypi/dm/django-fancybox.svg https://img.shields.io/github/license/bashu/django-fancybox.svg

Installation

pip install django-fancybox

External dependencies

  • jQuery - This is not included in the package since it is expected that in most scenarios this would already be available.

Setup

Add fancybox to INSTALLED_APPS:

INSTALLED_APPS += (
    'fancybox',
)

Be sure you have the django.template.context_processors.request processor

TEMPLATES = [
    {
        ...
        'OPTIONS': {
            'context_processors': [
                ...
                'django.template.context_processors.request',
            ],
        },
    },
]

and just include fancybox templates

{% include "fancybox/fancybox_css.html" %} {# Before the closing head tag #}
{% include "fancybox/fancybox_js.html" %} {# Before the closing body tag #}

When deploying on production server, don’t forget to run :

python manage.py collectstatic

Usage

Extend base template for ajax requests

{% extends request.is_ajax|yesno:"fancybox/base.html,base.html" %}

Add class="fancybox" to a link, and set the href to a page you want to display

<a data-fancybox data-type="ajax" href="{% url 'remote.html' %}" class="fancybox">Click here</a>

Please see example application. This application is used to manually test the functionalities of this package. This also serves as a good example.

You need only Django 1.4 or above to run that. It might run on older versions but that is not tested.

License

django-fancybox is released under the BSD license.

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-fancybox-0.1.5.tar.gz (29.5 kB view details)

Uploaded Source

Built Distribution

django_fancybox-0.1.5-py2.py3-none-any.whl (30.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-fancybox-0.1.5.tar.gz.

File metadata

  • Download URL: django-fancybox-0.1.5.tar.gz
  • Upload date:
  • Size: 29.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.7

File hashes

Hashes for django-fancybox-0.1.5.tar.gz
Algorithm Hash digest
SHA256 cbf07a9b64cb5b86fb4c9d484a99bc9c18da2983ecb9be36eb2899ffe4c4c2f3
MD5 e8f9e49554c4703bf84365b0832cd120
BLAKE2b-256 02603eb7c485dbff22bbc44e145f8b7139d0d86650870feffee48d84bfc6efcc

See more details on using hashes here.

File details

Details for the file django_fancybox-0.1.5-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_fancybox-0.1.5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 4b6e23497ce5123baf9a5a782e3ae92cc3c5c798757230cc4ec412cd55bf7d7f
MD5 6605c63248363234ec1147dbbc0dc7f6
BLAKE2b-256 e5209d51ce04139cebe54596ccc88556f5f2ce1b761e56d21e2fa3a067283c33

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