Skip to main content

Simple CMS django app

Project description

=====
Revuo
=====

Revuo is a simple CMS app for Django.

News
----

Version 0.3 -
* python 3 migration
* coding style improvements

Version 0.2.1 -
* test updates, passing with django 1.7

Version 0.2 -
* using summernote wysiwyg editor
* removing Video items, because it easy to embed them on news or posts

Version 0.1.1 -

* styling pages
* static handling

Version 0.1 -

basic, first version

Quick start
-----------

1. Add revuo and summernote to your INSTALLED_APPS settings like this:

INSTALLED_APPS = {
...
'revuo',
'django_summernote',
}

2. Import and include revuo and summernote urls in your urls.py like this:

from revuo.urls import urlpatterns as revuo_patterns

...

# revuo urls
url(r'', include(revuo_patterns, namespace='revuo')),

# summernote urls
url(r'^summernote/', include('django_summernote.urls')),

# password recovery urls
url(r'^restricted/password/change$',
'django.contrib.auth.views.password_change',
name='password_change'),
url(r'^restricted/password/ok$',
'django.contrib.auth.views.password_change_done', {},
name='password_change_done'),

3. Run 'python manage.py migrate' to create revuo models

4. Start the server

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

django-revuo-0.3.tar.gz (11.0 kB view hashes)

Uploaded Source

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