Simplecms. This is the CMS framework used by the web consultancy company Return to the Source, provided here for everyone to use under the AGPL license as part of our free and open source philosophy.
 
 
 
 
Go to file
Jaap Joris Vens 88e420f4c0 Include numberedmodel and simplesass apps
These apps are so minimal they don't warrant their own repository. I'm
hoping they will find a new home here. This move kind of obsoletes the
github.com/rtts/django-numberedmodel and github.com/rtts/django-simplesass
repositories, although I'm not planning to update their documentation unless
I make any major changes here.
2019-11-22 11:57:10 +01:00
cms Include numberedmodel and simplesass apps 2019-11-22 11:57:10 +01:00
numberedmodel Include numberedmodel and simplesass apps 2019-11-22 11:57:10 +01:00
project Sample project for testing 2019-11-22 11:35:27 +01:00
simplesass Include numberedmodel and simplesass apps 2019-11-22 11:57:10 +01:00
.gitignore first commit :) 2019-03-27 16:49:14 +01:00
LICENSE first commit :) 2019-03-27 16:49:14 +01:00
MANIFEST.in another try to include package data 2019-04-02 16:42:40 +02:00
README.md first commit :) 2019-03-27 16:49:14 +01:00
requirements.txt Include numberedmodel and simplesass apps 2019-11-22 11:57:10 +01:00
setup.py bump 2019-08-28 17:05:39 +02:00

README.md

Django Simple CMS

Simple CMS app with models that should suit everyone's small website needs.

Installation

pip install git+https://github.com/rtts/django-simplecms.git

Configuration

Add the following to your Django settings:

INSTALLED_APPS += [
    'cms',
    'ckeditor',
    'embed_video',
    'easy_thumbnails',
]

SECTION_TYPES = [
    ('normal', 'Normaal'),
]

SECTION_COLORS = [
    (1, 'Licht'),
    (2, 'Donker'),
]

And add the following to your URL patterns:

urlpatterns += [
    path('accounts/', include('django.contrib.auth.urls')),
    path('', include('cms.urls', namespace='cms')),
]