From b9ad6b645d16c9bd50cc0546111c7c68cbc0ca54 Mon Sep 17 00:00:00 2001 From: albertoconnor Date: Wed, 1 Mar 2017 15:42:00 -0500 Subject: [PATCH] [1.9.x] Fixed typo in docs/howto/custom-template-tags.txt. Backport of 2863e79a5c061b58e57ea7edc12701010725537c from master --- docs/howto/custom-template-tags.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howto/custom-template-tags.txt b/docs/howto/custom-template-tags.txt index 08e666d86c..0a1175e5f1 100644 --- a/docs/howto/custom-template-tags.txt +++ b/docs/howto/custom-template-tags.txt @@ -510,7 +510,7 @@ you see fit: .. code-block:: html+django - {% get_current_time "%Y-%m-%d %I:%M %p" as the_time %} + {% current_time "%Y-%m-%d %I:%M %p" as the_time %}

The time is {{ the_time }}.

.. _howto-custom-template-tags-inclusion-tags: