Files
edx-platform/cms
Matjaz Gregoric 9b89bd3245 Make comprehensive theme work with django templates.
Comprehensive theming did not work with django templates (used by course wiki).

The reason it didn't work was that in order for the theme to work, theme template folder
has to be added to django template dirs setting *before* django startup.
After django startup, modifying `settings.DEFAULT_TEMPLATE_ENGINE['DIRS']` has no effect,
because at that point the template engine is already initialized with a copy of the
template dirs list.

Instead of running the theme startup code as an autostartup hook, we manually run it
*before* `django.setup()`. This is fine because theme startup code doesn't have to do
anything else besides modifying some settings and doesn't actually need django to be
initialized.
2016-01-25 08:45:52 +01:00
..
2015-11-25 14:56:50 -05:00
2015-05-08 09:01:50 -04:00
2015-05-08 09:01:50 -04:00
2015-12-11 10:32:14 -05:00

CMS (Content Management System)
-------------------------------

This directory contains code relating to the course management portal for edX, also known as Studio.