https://github.com/bradbeattie/django-cms-lite
django-cms-lite is a package designed to dynamically expose Django templates
https://github.com/bradbeattie/django-cms-lite
Last synced: 6 months ago
JSON representation
django-cms-lite is a package designed to dynamically expose Django templates
- Host: GitHub
- URL: https://github.com/bradbeattie/django-cms-lite
- Owner: bradbeattie
- Created: 2012-05-09T20:27:11.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-04-22T17:04:09.000Z (over 10 years ago)
- Last Synced: 2025-05-07T14:58:48.677Z (6 months ago)
- Language: Python
- Homepage:
- Size: 137 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Introduction
============
``django-cms-lite`` is a package designed to dynamically expose Django
templates.
Requirements
============
Django 1.4 (it may work with older versions, but I haven't tested this)
Installation
============
Add ``cms_lite`` to your ``INSTALLED_APPS``.
Add cms_lite to your URLConf, using something like this::
urlpatterns += patterns("",
url(r"^", include("cms_lite.urls")),
)
Usage
=====
Somewhere discoverable by your TEMPLATE_DIRS setting, include a
directory named cms_lite. All files therein will be exposed as per the
above URLConf setting.