Simple CMS django app
Project description
=====
Revuo
=====
Revuo is a simple CMS app for Django.
News
----
Version 0.4 -
* refactored models (not compatible with previous versions)
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
Revuo
=====
Revuo is a simple CMS app for Django.
News
----
Version 0.4 -
* refactored models (not compatible with previous versions)
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
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
django-revuo-0.4.tar.gz
(189.0 kB
view details)
File details
Details for the file django-revuo-0.4.tar.gz
.
File metadata
- Download URL: django-revuo-0.4.tar.gz
- Upload date:
- Size: 189.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfb0d7604e63310db68d504e42c1caa8918220d6f32da795688adecc4b1a8527 |
|
MD5 | 3e2b6abaf5d8be2ea80f98e87e9d5973 |
|
BLAKE2b-256 | 2f0929888a13d7b1cc71a5aa423153a701612423b44d5a8dbefa57158bd2ed60 |