• Stars
    star
    149
  • Rank 247,131 (Top 5 %)
  • Language
    Python
  • License
    Apache License 2.0
  • Created over 12 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A widget engine to display various content on Django pages

This project has reached the end of its development as CMS framework. It only receives low maintenance to continue running existing websites. Feel free to browse the code, but please use other Django-based CMS frameworks such as Wagtail CMS when you start a new project.

django-fluent-contents

No Maintenance Intended https://github.com/django-fluent/django-fluent-contents/actions/workflows/tests.yaml/badge.svg?branch=master https://readthedocs.org/projects/django-fluent-contents/badge/?version=latest

The fluent_contents module offers a widget engine to display various content on a Django page.

This engine operates similarly like Django CMS, FeinCMS, Wagtail's streaming field or django-portlets, however, it can be used for any project, or CMS system.

Page contents can be constructed with multiple "content items". You can define your own content items, or use one the available content items out of the box. Standard web sites could use the bundled default content items. Other advanced designs (such as a web site with a magazine-like design, having many blocks at a page) can be implemented quickly by defining content items for the various "style elements" at the page.

Web editors are able to place the "content items" at the page, hence they can fill the content of advanced layouts easily and directly in the Django admin. This also applies to pages which have a "free form" or "presentation slide" design, this module allows the end-user to manage and configure the designed elements at the page.

By default, the following content items are available:

Standard content:

  • Text content - write rich text in a WYSIWYG editor (provided by django-wysiwyg).
  • Markup - write content with reStructuredText, Markdown or Textile (provided by docutils, Markdown or textile).
  • Forms - display forms created with django-form-designer-ai.

Online content:

  • Google Docs viewer - display a PDF or DOCX file on a page, using the Google Docs Viewer service.
  • OEmbed support - embed content from YouTube, Vimeo, SlideShare, Twitter, and more.
  • Twitter feed - display a Twitter timeline, or realtime search timeline.

For programmers:

  • Code - display code snippets with highlighting (provided by Pygments).
  • Gist - display Gist snippets from Github.
  • IFrame - display an <iframe> on the page.
  • Raw HTML content - include jQuery snippets, or "embed codes" by other services.
  • Shared content - display a set of items at multiple locations.

Interactive:

For more details, see the documentation at Read The Docs.

Screenshot

The PlaceholderField is nicely integrated in the Django admin interface:

django-fluent-contents placeholder field preview

Secondly, it's possible to build a CMS Page interface with the PlaceholderEditorAdmin, which displays each content placeholder in a tab:

django-fluent-contents placeholder editor preview

Installation

First install the module, preferably in a virtual environment. It can be installed from PyPI:

pip install django-fluent-contents

Or the current folder can be installed:

pip install .

The dependencies of plugins are not included by default. To install those, include the plugin names as extra option:

pip install django-fluent-contents[code,disquscommentsarea,formdesignerlink,markup,oembeditem,text,twitterfeed]

Configuration

Next, create a project which uses the module:

cd ..
django-admin.py startproject fluentdemo

It should have the following settings:

INSTALLED_APPS += (
    'fluent_contents',

    # And optionally all plugins desired:
    'fluent_contents.plugins.code',
    'fluent_contents.plugins.commentsarea',
    'fluent_contents.plugins.disquswidgets',
    'fluent_contents.plugins.formdesignerlink',
    'fluent_contents.plugins.gist',
    'fluent_contents.plugins.googledocsviewer',
    'fluent_contents.plugins.iframe',
    'fluent_contents.plugins.markup',
    'fluent_contents.plugins.rawhtml',
    'fluent_contents.plugins.text',

    # Some plugins need extra Django applications
    'disqus',
    'django.contrib.comments',
    'django_wysiwyg',
    'form_designer',
)

The database tables can be created afterwards:

./manage.py migrate

Finally, it needs a model or application that displays the content. There are two ways to include content. The most simply way, is adding a PlaceholderField to a model:

# models.py:

from fluent_contents.models import PlaceholderField

class Article(models.Model):
    title = models.CharField("Title", max_length=200)
    slug = models.SlugField("Slug", unique=True)
    content = PlaceholderField("article_content")

    class Meta:
        verbose_name = "Article"
        verbose_name_plural = "Articles"

    def __unicode__(self):
        return self.title


# admin.py:

from fluent_contents.admin import PlaceholderFieldAdmin

class ArticleAdmin(PlaceholderFieldAdmin):
    pass

admin.site.register(Article, ArticleAdmin)

The most advanced combination, is using the PlaceholderEditorAdmin or PlaceholderEditorAdminMixin classes. These classes are designed for CMS-style applications which multiple placeholders on a page. See the provided example application for details.

NOTE:

The django-fluent-pages application is built on top of this API, and provides a ready-to-use CMS that can be implemented with minimal configuration effort. To build a custom CMS, the API documentation of the fluent_contents.admin module provides more details of the classes.

Details about the various settings are explained in the documentation.

Creating custom content items

To implement custom elements of a design - while making them editable for admins - this module allows you to create custom content items. Take a look in the existing types at fluent_contents.plugins to see how it's being done.

It boils down to creating a package with 2 files:

The models.py file should define the fields of the content item:

from django.db import models
from fluent_contents.models import ContentItem

class AnnouncementBlockItem(ContentItem):
    title = models.CharField("Title", max_length=200)
    body = models.TextField("Body")
    button_text = models.CharField("Text", max_length=200)
    button_link = models.URLField("URL")

    class Meta:
        verbose_name = "Announcement block"
        verbose_name_plural = "Announcement blocks"

    def __unicode__(self):
        return self.title

The content_plugins.py file defines the metadata and rendering:

from fluent_contents.extensions import plugin_pool, ContentPlugin
from .models import AnnouncementBlockItem

@plugin_pool.register
class AnnouncementBlockPlugin(ContentPlugin):
   model = AnnouncementBlockItem
   render_template = "plugins/announcementblock.html"
   category = "Simple blocks"

The plugin can also define the admin layout, by adding fields such as a fieldset, but that is all optional. The template could look like:

<div class="announcement">
    <h3>{{ instance.title }}</h3>
    <div class="text">
        {{ instance.body|linebreaks }}
    </div>
    <p class="button"><a href="{{ instance.button_url }}">{{ instance.button_text }}</a></p>
</div>

Et, voila: web editors are now able to place an announcement items at the page in a very structured manner! Other content items can be created in the same way, either in the same Django application, or in a separate application.

Contributing

This module is designed to be generic. In case there is anything you didn't like about it, or think it's not flexible enough, please let us know. We'd love to improve it!

If you have any other valuable contribution, suggestion or idea, please let us know as well because we will look into it. Pull requests are welcome too. :-)

More Repositories

1

django-fluent-dashboard

An improved django-admin-tools dashboard for Django projects
Python
331
star
2

django-fluent-comments

A modern, ajax-based appearance for django comments
Python
181
star
3

django-fluent-pages

A flexible, scalable CMS with custom node types, and flexible block content.
Python
109
star
4

django-fluent-blogs

A blog engine with flexible block contents (based on django-fluent-contents)
Python
39
star
5

django-fluent.org

Code of django-fluent.org, also serving as example how to build django-fluent sites.
Python
33
star
6

fluentcms-emailtemplates

An email template system, that uses django-fluent-contents blocks to define the e-mail templates.
Python
4
star
7

demo.django-fluent.org

Demo website for django-fluent
Python
4
star
8

django-fluent-faq

A FAQ engine for Django Fluent CMS
Python
4
star
9

fluentcms-googlemaps

Google Maps widget for django-fluent-contents
Python
3
star
10

fluentcms-cookielaw

Display a dismissable cookie notification | Plugin for django-fluent CMS
Python
3
star
11

fluentcms-contactform

A contact form plugin django-fluent-contents
Python
3
star
12

fluentcms-pager

Bootstrap 3 Pager element for django-fluent-contents
Python
3
star
13

fluentcms-countdown

Countdown timer plugin for django-fluent CMS
Python
3
star
14

fluentcms-teaser

Teaser plugin for django-fluent-contents
Python
2
star
15

django-fluent-utils

Internal utilities for code sharing between django-fluent modules
Python
2
star
16

fluentcms-jumbotron

Bootstrap 3 Jumbotron element for django-fluent-contents
Python
2
star
17

fluentcms-privatenotes

Private sticky notes in the admin of django-fluent-contents
Python
1
star