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
Release history Release notifications | RSS feed
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.6.0.tar.gz
(14.4 kB
view details)
Built Distribution
File details
Details for the file wagtailnews-0.6.0.tar.gz
.
File metadata
- Download URL: wagtailnews-0.6.0.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39fe54a8c1caf95d62e50a7a568517c0dd75b44614bca59954f2aec2a5046f06 |
|
MD5 | d23de954e9e7bdb754377e26f16832d7 |
|
BLAKE2b-256 | 3353dbc9cb038a5dfd66c13378af1abe43b39f3fae2e9f317b6e8d00c15517a9 |
File details
Details for the file wagtailnews-0.6.0-py2-none-any.whl
.
File metadata
- Download URL: wagtailnews-0.6.0-py2-none-any.whl
- Upload date:
- Size: 23.2 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 182d38b304e6449bcd77e3e1f49bb978f4f21b65007326dd1a4fb4ec2032a616 |
|
MD5 | e9043f8ab3f68d7d56bcbe1ca2d40a2b |
|
BLAKE2b-256 | 5b4e720bcf52da8b2316ec62cc13e54e0477dc7a02511afa835be3a1ab13a1bd |