8000 GitHub - jarodl/echelon: A simple django cms.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jarodl/echelon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Echelon

A simple CMS written in Django.

Setup

pip install echelon

or

easy_install echelon

You can use Echelon in an existing project or create a new one based on the shell provided in example_project.

First add Echelon to your installed apps:

settings.py

INSTALLED_APPS = (
    ...
    'echelon',
)

Then include the urls:

urls.py

urlpatterns = patterns('',
    (r'^$', include('echelon.urls', namespace='echelon')),
)

Usage

About

A simple django cms.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0