Ticket #16793: load_tag_linking.diff

File load_tag_linking.diff, 1.5 KB (added by Nick Meharry, 13 years ago)
  • docs/howto/custom-template-tags.txt

     
    7070    and tags. They're in ``django/template/defaultfilters.py`` and
    7171    ``django/template/defaulttags.py``, respectively.
    7272
     73    For more information on the :ttag:`load` tag, see :doc:`/ref/templates/builtins`.
     74
    7375Writing custom template filters
    7476-------------------------------
    7577
  • docs/topics/templates.txt

     
    623623===============================
    624624
    625625Certain applications provide custom tag and filter libraries. To access them in
    626 a template, use the ``{% load %}`` tag::
     626a template, use the :ttag:`load` tag::
    627627
    628628    {% load comments %}
    629629
    630630    {% comment_form for blogs.entries entry.id with is_public yes %}
    631631
    632 In the above, the ``load`` tag loads the ``comments`` tag library, which then
     632In the above, the :ttag:`load` tag loads the ``comments`` tag library, which then
    633633makes the ``comment_form`` tag available for use. Consult the documentation
    634634area in your admin to find the list of custom libraries in your installation.
    635635
    636 The ``{% load %}`` tag can take multiple library names, separated by spaces.
     636The :ttag:`load` tag can take multiple library names, separated by spaces.
    637637Example::
    638638
    639639    {% load comments i18n %}
Back to Top