src/hdabo/context_processors.py
author rougeronj
Mon, 26 Jan 2015 16:09:54 +0100
changeset 432 e66d0d91650d
parent 266 825ff4d6a8ac
permissions -rw-r--r--
minor css and trad correction of graph visualisation dropdown
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
49
55e5f8a878ae add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
import hdabo
55e5f8a878ae add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
55e5f8a878ae add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
def version(request):
55e5f8a878ae add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
    return { 'VERSION': hdabo.get_version() }
55e5f8a878ae add the version context_processor and correct css to display it correctly
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5