src/jocondelab/context_processors.py
author veltr
Fri, 11 Oct 2013 16:31:01 +0200
changeset 148 8ff19e5d2d70
parent 0 4095911a7830
child 334 169b7cfd1f58
permissions -rw-r--r--
navigation fixes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
from . import get_version
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
def version(request):
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
    return { 'VERSION': get_version() }
4095911a7830 Jocondelab first commit before design
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5