From ae85586e6f4cdac65c5d44a19881489081e9bccb Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 20 Jun 2012 19:45:35 +0200 Subject: [PATCH] Add docs for date_modify --- doc/filters/date_modify.rst | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) create mode 100644 doc/filters/date_modify.rst diff --git a/doc/filters/date_modify.rst b/doc/filters/date_modify.rst new file mode 100644 index 0000000..303263b --- /dev/null +++ b/doc/filters/date_modify.rst @@ -0,0 +1,18 @@ +``date_modify`` +=============== + +.. versionadded:: 1.9 + The date_modify filter has been added in Twig 1.9. + +The ``date_modify`` filter modifies a date with a given modifier string: + +.. code-block:: jinja + + {{ post.published_at|date_modify("+1 day")|date("m/d/Y") }} + +The ``date_modify`` filter accepts strings (it must be in a format supported by the +`strtotime`_ function) or `DateTime`_ instances. You can easily combine it with the `date`_ +filter for formatting. + +.. _`strtotime`: http://www.php.net/strtotime +.. _`DateTime`: http://www.php.net/DateTime -- 1.7.2.5