Skip to main content

Simple, flexible app for integrating static, unstructured content in a Django site

Project description

django-pagelets is a simple, flexible app for integrating static, unstructured content in a Django site.

For complete documentation, checkout http://django-pagelets.readthedocs.org

Features

  • “Pagelets” for adding small pieces of content to otherwise static templates

  • CMS “pages” which include any number of pagelets and, if needed, attachments

  • Different pagelet content types including HTML and Markdown

  • An integrated WYSIWYG editor (WYMeditor) which can be selectively enabled/disabled

Required Dependencies

  • Django >= 2.2

  • A Python version supported by your chosen Django version

  • Django admin site

  • django-taggit 0.12.1 or greater

  • django-selectable 1.2.1 or greater

  • The django.template.context_processors.request context processor

Optional Dependencies

Installation and Setup

  1. django-pagelets is available on PyPI, so the easiest way to install it is to use pip:

    pip install django-pagelets
  2. Add pagelets, selectable and taggit to INSTALLED_APPS in settings.py and run migrate:

    INSTALLED_APPS = (
        ...,
        'pagelets',
        'selectable',
        'taggit'
        ...
    )
  3. Make sure django.template.context_processors.request is loaded and that you have a template directory with a “base.html” template in it:

    TEMPLATES=[
        {
            ...
            'DIRS': ['/home/user/projects/myproject/templates'], # <- should have 'base.html' inside
            ...
            'OPTIONS': {
                'context_processors': [
                    ...
                    'django.template.context_processors.request',
                ]
            },
        },
    ],
  4. Add the pagelets URLs to urls.py, e.g.:

    urlpatterns += [
        path('selectable/', include('selectable.urls')),
        path('pagelets-management/', include('pagelets.urls.management')),
        path('/', include('pagelets.urls.content')),
    ]
  5. Visit the admin site, add and save a new page, and click the View on site link. If everything is setup correctly, you should be able to see and edit the content you just added.

Development sponsored by Caktus Consulting Group, LLC..

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-pagelets-2.0.0.tar.gz (230.4 kB view details)

Uploaded Source

Built Distribution

django_pagelets-2.0.0-py2.py3-none-any.whl (215.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-pagelets-2.0.0.tar.gz.

File metadata

  • Download URL: django-pagelets-2.0.0.tar.gz
  • Upload date:
  • Size: 230.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for django-pagelets-2.0.0.tar.gz
Algorithm Hash digest
SHA256 5b84489e925024242fa403460c0599bb24d7240df6c6e8d1c16f6ba04297252e
MD5 853a96ce2bb97b79745280f577af4541
BLAKE2b-256 f90c6882910320b4153945f04f94b81de0716f3bfffd19e298e46753f98c200e

See more details on using hashes here.

Provenance

File details

Details for the file django_pagelets-2.0.0-py2.py3-none-any.whl.

File metadata

  • Download URL: django_pagelets-2.0.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 215.6 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for django_pagelets-2.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 59cca8c9b2a633a3797014d035563f2d813859cd04263268787ad146cfa97fe2
MD5 ffff62e22d7335eb054006db51d83af2
BLAKE2b-256 86c9223f982a5f995e90b88f8446d311fe65a6f821bcf55d9436c178ae88da4d

See more details on using hashes here.

Provenance

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