django-project-version is a django reusable app to show your project version
Contents
If you want always have VERSION variable in templates context, just add "djversion.context_processors.version" to settings.TEMPLATE_CONTEXT_PROCESSORS
TEMPLATE_CONTEXT_PROCESSORS += ( "djversion.context_processors.version", )
Or you can use project_version assignment templatetag which can be loaded from djversion_tags.
For example:
{% load djversion_tags %} {% project_version as VERSION %} {{ VERSION }}
django-project-version uses the MIT license. Please check the MIT-LICENSE file for more details.
Project Website: https://github.com/DCOD-OpenSource/django-project-version/
Author: Alexei Andrushievich <vint21h@vint21h.pp.ua>
For other authors list see AUTHORS file.