summaryrefslogtreecommitdiff
path: root/docs/ref/templates
AgeCommit message (Collapse)Author
2014-08-11Added a warning that remove_tags() output shouldn't be considered safe.Tim Graham
2014-08-11Fixed #23261 -- Deprecated old style list support for unordered_list filter.Jaap Roes
2014-07-14Fixed #22789 -- Deprecated django.contrib.webdesign.Tim Graham
Moved the {% lorem %} tag to built-in tags.
2014-07-02Fixed #22941 - Added support for domain-only links with chars after the TLD ↵LarryBrid
to urlize. It now works with something like google.com/foo/bar
2014-06-10Close autoescape tag in template documentation.Andreas Damgaard Pedersen
2014-06-05Fixed #18400 -- Modified length template filter to return 0 for unknown ↵Susan Tan
variables. Thanks Florian for the bug report, luyikei for the initial code patch, and Bouke for the code review feedback.
2014-06-03Fixed #22384 -- Deprecated reversing URLs by dotted path.Tim Graham
2014-06-02Fixed #22753 -- Documented ability to use a note with the {% comment %} tag.Bryce Nesbitt
2014-05-16Fixed #22167 -- Improved documentation on context processorsMoritz
Clarified the explanation on the order in which user provided variables to render_to_response, RequestContext and context processors are loaded.
2014-05-06Updated the messages context processor docsClaude Paroz
Refs #20610.
2014-04-26Updated doc links to point to Python 3 documentationClaude Paroz
2014-04-16Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of docs and tests.chriscauley
Thanks tomwys for the suggestion.
2014-03-24Removed versionadded/changed annotations for 1.6.Tim Graham
2014-03-22Fixed #22313 -- Removed 'u' prefixes from documentationClaude Paroz
2014-03-22Fixed #22294 -- Prevented converting length filter output to stringClaude Paroz
Thanks Steve Pike for the report.
2014-03-22Improved strip_tags and clarified documentationClaude Paroz
The fact that strip_tags cannot guarantee to really strip all non-safe HTML content was not clear enough. Also see: https://www.djangoproject.com/weblog/2014/mar/22/strip-tags-advisory/
2014-03-21Switched {% cycle %} and {% firstof %} tags to auto-escape their variables ↵Tim Graham
per deprecation timeline. refs #17906.
2014-03-21Removed fix_ampersands template filter per deprecation timeline.Tim Graham
Also removed related utility functions: * django.utils.html.fix_ampersands * django.utils.html.clean_html
2014-03-03Fixed some typos and formatting issues in docs.Rodolfo Carvalho
2014-03-01Fixed #22130 -- Deprecated fix_ampersands, removed utils.clean_html()Erik Romijn
2014-02-28Fixed doc typos.Tim Graham
2014-02-23Fixed #21881 -- Clarify behavior of {% ssi %} template tag.Baptiste Mispelon
When using the `parsed` option, {% ssi %} has the same limitation as {% include %}, namely that the rendering of the included template is done separately. Thanks to trac user nagyv for the report and to alextreme for the patch.
2014-02-16Made the new template.Context.flatten() method a public API.Marek Wywiał
That method was introduced in 9db4271bd11ac23a5a5652bbcdf8fb6d4b997651. Refs #21765.
2014-02-13Fixed #19496 -- Added truncatechars_html filter.Jeremy
Thanks esevece for the suggestion and Nick Sandford and Martin Warne for the inital work on the patch.
2014-01-22Fixed #21529 -- Noted that {% url %} encodes its output (refs #13260).Tim Graham
2014-01-17Fixed #18942 -- Clarified usage of {% get_static_prefix %}.Tim Graham
Thanks Aymeric for the suggestion.
2014-01-17Fixed #13116 -- Described scope of variables created by {% url ... as var %} ↵Tim Graham
syntax. Thanks leif_p for the suggestion.
2013-12-15Added some internal links to render_to_string documentation.Baptiste Mispelon
2013-11-28Fixed #21515 -- Corrected example of template.Context in documentation.Baptiste Mispelon
Thanks to trac user oubiga for the report.
2013-11-19fixed typo in builtins.txtJulia Antokhine
2013-11-06Fixed another typo introduced by b914991b3705cb6c91013d962c55cda9deb18d83.Baptiste Mispelon
Thanks Claude for catching it.
2013-11-05Fixed a documentation typo introduced by b914991b37.Simon Charette
2013-11-06Added more tests and documentation for dictsort.Baptiste Mispelon
It's possible to use something like {{ foo|dictsort:'bar.baz' }} but this wasn't tested or documented.
2013-11-01Fixed spelling ("dependant" -> "dependent")Tim Graham
Dependent means reliant on. A dependant is a person like a child or spouse. Thanks Andrew Wilcox for the report.
2013-10-30Fixed #21306 -- Documented lower-casing behavior of title filter.Tim Graham
2013-09-22Added docs for changes in commit dd3a883894.Ramiro Morales
Refs #20693.
2013-09-21Fixed #21133 --Clarifed documentation about strftime formatting.Curtis Maloney
2013-09-18Fixed #4278 -- Added a dirs parameter to a few functions to override ↵Berker Peksag
TEMPLATE_DIRS. * django.template.loader.get_template() * django.template.loader.select_template() * django.shortcuts.render() * django.shortcuts.render_to_response() Thanks amcnabb for the suggestion.
2013-09-13Fixed #21101 -- Updated urlize documentation to mention email addressesGoetz
2013-09-06Fixed #16096 -- Added origin attribute to template instances.Preston Timmons
Thanks jdunck for the suggestion.
2013-09-04Clarified docs for some tags and filtersPaul C. Anagnostopoulos
2013-08-29Fixed #17356 -- Allowed {% include %} to render compiled templatesCurtis Maloney
Reviewed by Loic Bistuer and Tim Graham.
2013-08-19Removed versionadded/changed annotations for 1.5Tim Graham
2013-08-14Fixed #20709 -- Allowed {% widthratio %} to accept an "as" parameter.Jonathan Slenders
Thanks clay.evil@ for the suggestion.
2013-08-06Fixed #20852 - Fixed incorrectly generated left quotes in docs.Dominic Rodger
Sphinx generates left single quotes for apostrophes after code markup, when right single quotes are required. The easiest way to fix this is just by inserting the unicode character for a right single quote. Instances of the problem were found by looking for ">‘" in the generated HTML.
2013-07-17Allowed Context.push to behave as a context mananger.Curtis Maloney
Thanks Loic Bistuer for the review.
2013-07-15Fixed some markup in docs/ref/templates/api.txtTim Graham
2013-06-17Fixed #20614 -- Typo in documentation.Baptiste Darthenay
2013-06-15Fixed #20606 -- Fixed 'for' example in template tag docsClaude Paroz
Thanks batisteo for the report.
2013-05-29Fixed regroup example.Gavin Wahl
Chicago was missing.