diff -r cacd524f5279 -r 9246b0057a75 src/cm/context_processors.py --- a/src/cm/context_processors.py Thu May 24 14:42:22 2012 +0200 +++ b/src/cm/context_processors.py Thu May 24 15:59:12 2012 +0200 @@ -1,6 +1,7 @@ from django.conf import settings from cm.models import ApplicationConfiguration from cm.cm_settings import TRACKING_HTML +from cm.converters.pandoc_converters import PANDOC_VERSION def static(request): """ add static data to be used in templates @@ -12,6 +13,7 @@ 'CONF': ApplicationConfiguration, 'CM_MEDIA_PREFIX' : settings.CM_MEDIA_PREFIX, 'TRACKING_HTML' : TRACKING_HTML, + 'PANDOC_VERSION' : PANDOC_VERSION, } @@ -40,4 +42,4 @@ """ return { 'LOCAL_LANGUAGES' : LOCAL_LANGUAGES, - } \ No newline at end of file + }