Kaydet (Commit) 19242c67 authored tarafından Tim Graham's avatar Tim Graham

Fixed #23735 -- Clarified that admindocs must be enabled to view template tag libraries in admin.

Thanks Aymeric Augustin for the report.
üst e7cb4f2f
...@@ -662,15 +662,18 @@ Custom tag and filter libraries ...@@ -662,15 +662,18 @@ Custom tag and filter libraries
=============================== ===============================
Certain applications provide custom tag and filter libraries. To access them in Certain applications provide custom tag and filter libraries. To access them in
a template, use the :ttag:`load` tag:: a template, ensure the application is in :setting:`INSTALLED_APPS` (we'd add
``'django.contrib.humanize'`` for this example), and then use the :ttag:`load`
tag in a template::
{% load humanize %} {% load humanize %}
{{ 45000|intcomma }} {{ 45000|intcomma }}
In the above, the :ttag:`load` tag loads the ``humanize`` tag library, which then In the above, the :ttag:`load` tag loads the ``humanize`` tag library, which then
makes the ``intcomma`` filter available for use. Consult the documentation makes the ``intcomma`` filter available for use. If you've enabled
area in your admin to find the list of custom libraries in your installation. :mod:`django.contrib.admindocs`, you can consult the documentation area in your
admin to find the list of custom libraries in your installation.
The :ttag:`load` tag can take multiple library names, separated by spaces. The :ttag:`load` tag can take multiple library names, separated by spaces.
Example:: Example::
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment