Skip to main content

Provide deadly simple Article model for Django

Project description

https://travis-ci.org/zniper/simple-article.svg?branch=master https://coveralls.io/repos/zniper/simple-article/badge.svg?branch=master

simple-article is a Django application which provides a simple Article model. That model could be a good start for simple blog or news, without the needs for installation much of other 3rd party packages.

Installation

You can install simple-article from PyPI:

pip install simple-article

Or from GitHub:

pip install https://github.com/zniper/simple-article/zipball/master

Configuration

Inside settings module, put article and related applications into INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'tinymce',
    'taggit',
    'article',
)

Include article URLs inside application urls.py file:

urlpatterns = patterns(
   ...
    url(r'^blog/', include('article.urls')),
    ...
)

Then, update the database.

With Django 1.9 or newer:

python manage.py migrate article

With Django 1.8.x or older:

python manage.py syncdb

or using South:

python manage.py migrate article

Usage

Inside templates, there is an assignment tag named recent_articles which returns limited number of newest articles:

{% load article_tags %}

Short call, with maximum 10 newest articles returned:

{% recent_articles as other_articles %}

Customized call, with exclusion of given article:

{% recent_articles limit=5 exclude=article.pk as other_articles %}

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

simple-article-0.2.1.tar.gz (6.1 kB view details)

Uploaded Source

File details

Details for the file simple-article-0.2.1.tar.gz.

File metadata

File hashes

Hashes for simple-article-0.2.1.tar.gz
Algorithm Hash digest
SHA256 48eb829311267139814eab4f20d673fe834aacc3490f809b01432e65e0699309
MD5 d2a8d22d99390e535958a50285f500b6
BLAKE2b-256 564671c7e1e7debb9d1b7477a7507469fd206f69dee5aff61841ee533572bf07

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