Skip to main content

A simple, Wagtail CMS inspired multi language content block engine for Django. Intended to give slightly more control than regular flatpages.

Project description

django-page-blocks

django-page-blocks is intended to be a lightweight page content engine that can be integrated into an existing application to give site admins a little more control over page building. It's inspired by the block system in Wagtail CMS but isn't itself intended to be a full CMS, rather an enhanced version of the built in flatpages module.

This documentation is a bit brief at the moment but hopefully the info below can help you get set up.

It was developed and tested on Python 3.9 with Django 3.2. It will probably work on other recent versions of both as it doesn't do anything particularly special, but your mileage may vary.

The code is still under active development and is very much in an alpha state (hence the lack of documentation. As always, pull requests and feedback welcome.

CAUTION django-page-blocks 0.4 includes an overhaul to the internationalization support in the library, with it moving from a per block to per field option. It's not a breaking change and won't affect sites already using django-page-blocks < 0.4 if you have only been using one language. For existing multi-language sites, as the language field is stripped from the existing blocks, they will be merged into the same page so you will need to do some editing.

Getting Started

Add the app to your INSTALLED_APPS

INSTALLED_APPS = [
  ...
  'pageblocks'
  ...
]

You will need to also ensure that you have at least one option set in LANGUAGES, and that your LANGUAGE_CODE is set to one of these options.

You can then either use the base model pageblocks.Page or extend it.

Extending the Models

There are two options to extend these models depending on your needs, however you'll need to make a decision on it before starting your project or else you may run into problems later.

Option 1 - Use pageblocks.Page as a base class

from pageblocks.models import Page

class MyPage(Page):
  ...

This option is pretty easy to use, but has a major drawback if you need to override any of the base fields (e.g. to make slug non unique)

Option 2 - AbstractPage and AbstractPageBlock

This option allows full control over the model, but you need to have models for both Page and PageBlock in your project, and PageBlock needs to have a foreign key field with the related name of 'blocks':

from pageblocks.models import AbstractPage, AbstractPageBlock

class Page(AbstractPage):
  pass

class PageBlock(AbstractPageBlock):
  page = models.ForeignKey(Page, on_delete=models.CASCADE, related_name='blocks', db_index=True)

Admin

To allow proper editing of your pages, django-page-blocks provides an admin base class you can use against either your models, or the default one .. e.g.

from pageblocks.admin import PageAdmin

admin.site.register(Page, PageAdmin)

Serving Pages

You can serve pages by extending the PageView class. Your exact needs may differ, but here's a step by step example to look up and display a page based on it's slug field.

  1. Create a view extending the PageView class, defining either a queryset attribute or a get_queryset function to return a queryset of your page records for filtering. By default the view will select an object based on the slug url parameter if it's provided, but you can change this by overriding the get_object function:
from pageblocks.views import PageView
from myapp.models import Page

class MyPageView(PageView):
  template_name = 'page.html'
  queryset = Page.objects.all()
  1. Create a template (in the above example it should be page.html) that loads the pageblocks template tag:
{% load pageblocks %}

The current page will be available in the template as the page object and you can now render your page content with {% pageblocks page %}. Custom blocks can also include stylesheet and script dependencies, which you can render in your template with {% pageblocks_scripts page %} and {% pageblocks_stylesheets page %} accordingly.

Of course you can mix and match this to meet your needs. If you need something more low level, you can render an individual list of blocks with the blocks tag .. e.g. {% blocks blocks %}

  1. Add it to your urlpatterns:
urlpatterns = [
  ...
  path('<slug:slug>/', MyPageView.as_view())
  ...
]

MultiLanguageField

By default, Page.title is a MultiLanguageField, which simply stores a dictionary with values for each language defined in settings.LANGUAGES. You can render this or any other MultiLanguageField in a template by using the multilang tag, e.g. {% multilang page.title %}

Custom Blocks

This package comes with a couple of built in blocks, but you'll probably quickly outgrow them and need to add your own. You can do this by extending the pageblocks.blocks.BaseBlock class.

This documentation needs fleshing out a bit, but for now, a good place to start would be to look at the source code for HTMLBlock which should hopefully give you an idea of how to extend it.

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-page-blocks-0.4.0.tar.gz (22.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_page_blocks-0.4.0-py3-none-any.whl (34.9 kB view details)

Uploaded Python 3

File details

Details for the file django-page-blocks-0.4.0.tar.gz.

File metadata

  • Download URL: django-page-blocks-0.4.0.tar.gz
  • Upload date:
  • Size: 22.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for django-page-blocks-0.4.0.tar.gz
Algorithm Hash digest
SHA256 9683b90e3adfbecc87f02f7a572f0445d20a9edf566425ecb7d93a53b0b6bc52
MD5 382a754d9b56aa750767253023e0f120
BLAKE2b-256 be2e5a86239377db3bc4f1f88e3352e7853e1425ce396187a964aa76cc0a2956

See more details on using hashes here.

File details

Details for the file django_page_blocks-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_page_blocks-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3db6c4f4f477d7999feff1a7e87625141106b737a4c56ccf96f8da5e3a37314c
MD5 c29b00dd4a6a1c02ce6e74e8990da014
BLAKE2b-256 dda3272742aa545f8a6cbf94dd7a80d92f2f521a027444e2f4bd77efffbcb71c

See more details on using hashes here.

Supported by

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