Skip to main content

News / blog plugin for the Wagtail CMS

Project description

A plugin for Wagtail that provides news / blogging functionality.

Installing

Install using pip:

pip install wagtailnews

It works with Wagtail 0.7 and upwards.

Using

Create news models for your application that inherit from the relevant wagtailnews models:

from django.db import models

from wagtail.wagtailadmin.edit_handlers import FieldPanel
from wagtail.wagtailcore.fields import RichTextField
from wagtail.wagtailcore.models import Page

from wagtailnews.models import NewsIndexMixin, AbstractNewsItem, AbstractNewsItemRevision
from wagtailnews.decorators import newsindex


# The decorator registers this model as a news index
@newsindex
class NewsIndex(NewsIndexMixin, Page):
    # Add extra fields here, as in a normal Wagtail Page class, if required
    newsitem_model = 'NewsItem'


class NewsItem(AbstractNewsItem):
    # NewsItem is a normal Django model, *not* a Wagtail Page.
    # Add any fields required for your page.
    # It already has ``date`` field, and a link to its parent ``NewsIndex`` Page
    title = models.CharField(max_length=255)
    body = RichTextField()

    panels = [
        FieldPanel('title', classname='full title'),
        FieldPanel('body', classname='full'),
    ] + AbstractNewsItem.panels

    def __unicode__(self):
        return self.title


class NewsItemRevision(AbstractNewsItemRevision):
    newsitem = models.ForeignKey(NewsItem, related_name='revisions')

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

wagtailnews-0.8.tar.gz (17.0 kB view details)

Uploaded Source

Built Distribution

wagtailnews-0.8-py2.py3-none-any.whl (27.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file wagtailnews-0.8.tar.gz.

File metadata

  • Download URL: wagtailnews-0.8.tar.gz
  • Upload date:
  • Size: 17.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for wagtailnews-0.8.tar.gz
Algorithm Hash digest
SHA256 4ac7c72c70074a3645ba2fa6b8e2d02836bef53081ab0b5dbe7b29daadebc4e6
MD5 171d2ef9e34ecc0fb2d8d58caf6b3db9
BLAKE2b-256 ce33df3436cf793525d145f60e5fcccbbb810698a129f102c2c5953b11a5da5f

See more details on using hashes here.

File details

Details for the file wagtailnews-0.8-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for wagtailnews-0.8-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7dd61822a429464ba2420a69054738d278e81ecd61260d1d85146c7c88aec268
MD5 c8c0d3d069e9218ac91b7673861481e4
BLAKE2b-256 5db09a972d8e5321a5bafb90777d0e8d19be9ede1322ec64c4ccd2ef2fb4b159

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