Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theherk/django-theherk-article
Simple Django-cms plugin for adding articles.
https://github.com/theherk/django-theherk-article
Last synced: 16 days ago
JSON representation
Simple Django-cms plugin for adding articles.
- Host: GitHub
- URL: https://github.com/theherk/django-theherk-article
- Owner: theherk
- License: other
- Created: 2013-05-19T21:59:58.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-05-22T08:31:26.000Z (over 11 years ago)
- Last Synced: 2024-08-08T18:04:14.024Z (6 months ago)
- Language: Python
- Size: 133 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
TheHerk Article
===============TheHerk Article is a very simple django CMS plugin for posting an article that consists of:
- Title
- Slugged Title
- Description
- Body (html)By default the title field and description will populate an hgroup, but this can be overwritten in your template. The slug is to link the title to an ID on the page.
The slug is set to only save on create so that the link won't change over time and edits.
The body can use html, but this, too, can be changed in your template.
Usage
-----1. Add "article" to your INSTALLED_APPS
INSTALLED_APPS = (
...
'article',
)2. Run `python manage.py migrate article`.
Alternately, you could `syncdb` and `migrate --fake`