Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref/templates
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed doc typos.Tim Graham2014-02-281-1/+1
|
* Fixed #21881 -- Clarify behavior of {% ssi %} template tag.Baptiste Mispelon2014-02-231-1/+8
| | | | | | | | | 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.
* Made the new template.Context.flatten() method a public API.Marek Wywiał2014-02-161-0/+37
| | | | | | That method was introduced in 9db4271bd11ac23a5a5652bbcdf8fb6d4b997651. Refs #21765.
* Fixed #19496 -- Added truncatechars_html filter.Jeremy2014-02-131-0/+20
| | | | | Thanks esevece for the suggestion and Nick Sandford and Martin Warne for the inital work on the patch.
* Fixed #21529 -- Noted that {% url %} encodes its output ↵Tim Graham2014-01-221-3/+9
| | | | (refs #13260).
* Fixed #18942 -- Clarified usage of {% get_static_prefix %}.Tim Graham2014-01-171-4/+3
| | | | Thanks Aymeric for the suggestion.
* Fixed #13116 -- Described scope of variables created by ↵Tim Graham2014-01-171-1/+3
| | | | | | {% url ... as var %} syntax. Thanks leif_p for the suggestion.
* Added some internal links to render_to_string documentation.Baptiste Mispelon2013-12-151-3/+3
|
* Fixed #21515 -- Corrected example of template.Context in ↵Baptiste Mispelon2013-11-281-0/+2
| | | | | | documentation. Thanks to trac user oubiga for the report.
* fixed typo in builtins.txtJulia Antokhine2013-11-191-1/+1
|
* Fixed another typo introduced by ↵Baptiste Mispelon2013-11-061-1/+1
| | | | | | b914991b3705cb6c91013d962c55cda9deb18d83. Thanks Claude for catching it.
* Fixed a documentation typo introduced by b914991b37.Simon Charette2013-11-061-1/+2
|
* Added more tests and documentation for dictsort.Baptiste Mispelon2013-11-061-0/+21
| | | | | It's possible to use something like {{ foo|dictsort:'bar.baz' }} but this wasn't tested or documented.
* Fixed spelling ("dependant" -> "dependent")Tim Graham2013-11-021-1/+1
| | | | | | | Dependent means reliant on. A dependant is a person like a child or spouse. Thanks Andrew Wilcox for the report.
* Fixed #21306 -- Documented lower-casing behavior of ↵Tim Graham2013-10-301-3/+4
| | | | title filter.
* Added docs for changes in commit dd3a883894.Ramiro Morales2013-09-221-5/+24
| | | | Refs #20693.
* Fixed #21133 --Clarifed documentation about strftime ↵Curtis Maloney2013-09-211-0/+4
| | | | formatting.
* Fixed #4278 -- Added a dirs parameter to a few functions ↵Berker Peksag2013-09-181-2/+16
| | | | | | | | | | | to override 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.
* Fixed #21101 -- Updated urlize documentation to mention ↵Goetz2013-09-131-2/+7
| | | | email addresses
* Fixed #16096 -- Added origin attribute to template ↵Preston Timmons2013-09-061-1/+36
| | | | | | instances. Thanks jdunck for the suggestion.
* Clarified docs for some tags and filtersPaul C. Anagnostopoulos2013-09-041-76/+89
|
* Fixed #17356 -- Allowed {% include %} to render compiled ↵Curtis Maloney2013-08-291-0/+6
| | | | | | templates Reviewed by Loic Bistuer and Tim Graham.
* Removed versionadded/changed annotations for 1.5Tim Graham2013-08-192-17/+2
|
* Fixed #20709 -- Allowed {% widthratio %} to accept an ↵Jonathan Slenders2013-08-141-0/+8
| | | | | | "as" parameter. Thanks clay.evil@ for the suggestion.
* Fixed #20852 - Fixed incorrectly generated left quotes ↵Dominic Rodger2013-08-061-1/+1
| | | | | | | | | | | | in docs. 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.
* Allowed Context.push to behave as a context mananger.Curtis Maloney2013-07-171-0/+25
| | | | Thanks Loic Bistuer for the review.
* Fixed some markup in docs/ref/templates/api.txtTim Graham2013-07-151-7/+12
|
* Fixed #20614 -- Typo in documentation.Baptiste Darthenay2013-06-171-1/+1
|
* Fixed #20606 -- Fixed 'for' example in template tag docsClaude Paroz2013-06-151-1/+1
| | | | Thanks batisteo for the report.
* Fixed regroup example.Gavin Wahl2013-05-301-0/+2
| | | | Chicago was missing.
* Add missing imports and models to the examples in the ↵Silvan Spross2013-05-191-0/+7
| | | | template layer documentation
* Fixed #20336 -- Removed obsolete paragraph from the docs.Aymeric Augustin2013-04-301-5/+0
| | | | Thanks Baptiste Mispelon.
* Corrected "it's" to "its" when used possessively.Thomas Thurman2013-04-291-1/+1
| | | | Fixed #20327.
* Adapted uses of versionchanged/versionadded to the new form.Juan Catalano2013-04-202-20/+22
| | | | Refs #20104.
* Removed a trailing space in the template name on line 174.Andrew Brown2013-04-051-1/+1
| | | | | | This trailing space may seem innocuous, but can be easily copied-and-pasted from the docs. This can lead to bizarre File Not Found errors where the checked paths look correct, but actually aren't because the trailing space is hard to see in an error message.
* Updated some 'Dive Into Python' linksClaude Paroz2013-04-011-1/+1
|
* Fixed #19897 - Updated static files howto.Tim Graham2013-03-301-2/+4
| | | | | Thanks Jan Murre, Reinout van Rees and Wim Feijen, plus Remco Wendt for reviewing.
* Fixed #17906 - Autoescaping {% cycle %} and {% firstof ↵Vladimir A Filonov2013-02-231-12/+43
| | | | | | | %} templatetags. This commit adds "future" version of these two tags with auto-escaping enabled.
* Fixed #19516 - Fixed remaining broken links.Tim Graham2013-01-032-4/+20
| | | | Added -n to sphinx builds to catch issues going forward.
* Removed versionadded/changed annotations dating back to 1.4.Aymeric Augustin2012-12-292-26/+6
|
* Removed django.contrib.markup.Aymeric Augustin2012-12-291-10/+0
|
* Fixed broken links, round 3. refs #19516Tim Graham2012-12-271-1/+1
|
* Fixed #19470 - Clarified widthratio example.Tim Graham2012-12-181-4/+4
| | | | Thanks orblivion for the suggestion.
* Fixed #19354 -- Do not assume usermodel.pk == usermodel.idClaude Paroz2012-11-291-1/+1
| | | | Thanks markteisman at hotmail.com for the report.
* Fixed two typos.Aymeric Augustin2012-11-251-1/+1
|
* Fixed #19280 -- Raised an explicit exception for the old ↵Aymeric Augustin2012-11-241-0/+10
| | | | {% url %} syntax.
* Fixed #19348 - Clarified the units of filesizeformat.Tim Graham2012-11-231-0/+8
| | | | Thanks george_edison for the report and Claude Paroz for the patch.
* Fixed #19308 - Clarified stringformat filter exampleTim Graham2012-11-181-2/+2
| | | | Thanks Shabda Raaj.
* Converted <paragraph> to <p> per #aaugustin's requestDaniel Greenfeld2012-11-131-1/+1
|
* Added examples for comment, templatetag, escape, ↵Daniel Greenfeld2012-11-091-2/+30
| | | | force_escape, timesince, and timeuntil