From ee7f51c66dfc1700ff065dfeb5fe2388cc2e9619 Mon Sep 17 00:00:00 2001 From: Graham Ullrich Date: Thu, 22 Mar 2018 10:49:36 -0600 Subject: [PATCH] Fixed #29250 -- Added 'django_version' context to startapp/project docs. --- docs/ref/django-admin.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 9b167ea1f47..1cd8ee7034a 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -1198,6 +1198,7 @@ files is: - ``app_directory`` -- the full path of the newly created app - ``camel_case_app_name`` -- the app name in camel case format - ``docs_version`` -- the version of the documentation: ``'dev'`` or ``'1.x'`` +- ``django_version`` -- the version of Django, e.g.``'2.0.3'`` .. _render_warning: @@ -1267,6 +1268,7 @@ The :class:`template context ` used is: - ``project_directory`` -- the full path of the newly created project - ``secret_key`` -- a random key for the :setting:`SECRET_KEY` setting - ``docs_version`` -- the version of the documentation: ``'dev'`` or ``'1.x'`` +- ``django_version`` -- the version of Django, e.g.``'2.0.3'`` Please also see the :ref:`rendering warning ` as mentioned for :djadmin:`startapp`.