summaryrefslogtreecommitdiff
path: root/docs/ref/templates
AgeCommit message (Collapse)Author
2014-01-22[1.6.x] Fixed #21529 -- Noted that {% url %} encodes its output (refs #13260).Tim Graham
Backport of dfc092622e from master
2014-01-17[1.6.x] Fixed #18942 -- Clarified usage of {% get_static_prefix %}.Tim Graham
Thanks Aymeric for the suggestion. Backport of bc7668eb51 from master
2014-01-17[1.6.x] Fixed #13116 -- Described scope of variables created by {% url ... ↵Tim Graham
as var %} syntax. Thanks leif_p for the suggestion. Backport of 4a5aac47a6 from master
2013-12-15[1.6.x] Added some internal links to render_to_string documentation.Baptiste Mispelon
Backport of 1689744aee1f13b2f4e270ce63cea143eb6d868e from master.
2013-11-28[1.6.x] Fixed #21515 -- Corrected example of template.Context in documentation.Baptiste Mispelon
Thanks to trac user oubiga for the report. Backport of 077af42139db84d88f293ab5eadc989a9169dce1 from master.
2013-11-18[1.6.x] Fixed #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. Backport of c33d1ca1d98003de29cdecb6080b52c5c52139bd from master.
2013-11-01[1.6.x] Fixed 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. Backport of 090315f5df from master
2013-10-30[1.6.x] Fixed #21306 -- Documented lower-casing behavior of title filter.Tim Graham
Backport of eafe279120 from master
2013-09-21[1.6.x] Fixed #21133 -- Clarifed documentation about strftime formatting.Curtis Maloney
Backport of 43a2ec7999 from master
2013-09-13[1.6.x] Fixed #21101 -- Updated urlize documentation to mention email addressesGoetz
Backport of 39b49fd339 from master
2013-09-04[1.6.x] Clarified docs for some tags and filtersPaul C. Anagnostopoulos
Backport of 1ccdc08189 from master
2013-07-15[1.6.x] Fixed some markup in docs/ref/templates/api.txtTim Graham
Backport of 862a04a56d from master
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.
2013-05-19Add missing imports and models to the examples in the template layer ↵Silvan Spross
documentation
2013-04-30Fixed #20336 -- Removed obsolete paragraph from the docs.Aymeric Augustin
Thanks Baptiste Mispelon.
2013-04-29Corrected "it's" to "its" when used possessively.Thomas Thurman
Fixed #20327.
2013-04-20Adapted uses of versionchanged/versionadded to the new form.Juan Catalano
Refs #20104.
2013-04-05Removed a trailing space in the template name on line 174.Andrew Brown
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.
2013-04-01Updated some 'Dive Into Python' linksClaude Paroz
2013-03-29Fixed #19897 - Updated static files howto.Tim Graham
Thanks Jan Murre, Reinout van Rees and Wim Feijen, plus Remco Wendt for reviewing.
2013-02-23Fixed #17906 - Autoescaping {% cycle %} and {% firstof %} templatetags.Vladimir A Filonov
This commit adds "future" version of these two tags with auto-escaping enabled.
2013-01-02Fixed #19516 - Fixed remaining broken links.Tim Graham
Added -n to sphinx builds to catch issues going forward.
2012-12-29Removed versionadded/changed annotations dating back to 1.4.Aymeric Augustin
2012-12-29Removed django.contrib.markup.Aymeric Augustin
2012-12-26Fixed broken links, round 3. refs #19516Tim Graham
2012-12-18Fixed #19470 - Clarified widthratio example.Tim Graham
Thanks orblivion for the suggestion.
2012-11-29Fixed #19354 -- Do not assume usermodel.pk == usermodel.idClaude Paroz
Thanks markteisman at hotmail.com for the report.
2012-11-25Fixed two typos.Aymeric Augustin
2012-11-24Fixed #19280 -- Raised an explicit exception for the old {% url %} syntax.Aymeric Augustin
2012-11-23Fixed #19348 - Clarified the units of filesizeformat.Tim Graham
Thanks george_edison for the report and Claude Paroz for the patch.
2012-11-17Fixed #19308 - Clarified stringformat filter exampleTim Graham
Thanks Shabda Raaj.
2012-11-12Converted <paragraph> to <p> per #aaugustin's requestDaniel Greenfeld
2012-11-08Added examples for comment, templatetag, escape, force_escape, timesince, ↵Daniel Greenfeld
and timeuntil
2012-11-04Removed redundant docs addition across two commitsPreston Holmes
d5c3c45f2fdfee09d81ad8dc7b0db8338d6d0aae a70492e6b532905c921678f35b5c60b22387f1c6
2012-11-04Merge pull request #496 from pydanny/ticket_19241Bryan Veloso
Demonstrate how to round to integers using floatformat templatetag
2012-11-04Fixed #19241 -- Improved floatformat docsDaniel Greenfeld
Demonstrate how to round to integers using floatformat templatetag
2012-11-04Demonstrate how to round to integers using floatformat templatetagDaniel Greenfeld
2012-10-29Fixed #19209 -- Documented |date:"I".Aymeric Augustin
Thanks mitar for the report.
2012-10-07Added section about URL reversion to URL mapper document.Ramiro Morales
2012-09-24Fix docs for context_processors.authAndrew Badr
Copy said it created three context variables, but only lists two. ("messages" was removed.)
2012-09-22Fixed #18951 -- Formatting of microseconds.Aymeric Augustin
Thanks olofom at gmail com for the report.
2012-09-20Fixed #18934 - Removed versionadded/changed annotations for Django 1.3Tim Graham
2012-09-01Fixed #13608 - Noted that template lookups use literal values.Tim Graham
2012-08-31Fixed #18642 - Added a note suggesting the use of render() rather than ↵Tim Graham
render_to_response() if you need RequestContext in your template.
2012-08-18Fixed #16744 -- Class based view should have the view object in the contextMarc Tamlyn
Updated the most recent patch from @claudep to apply again and updated the documentation location.
2012-08-04Added a missing space to the description of the `cut` filter.Florian Apolloner
2012-07-24Changed the word "brackets" to "parentheses"Kevin McCarthy
I want to change the word "brackets" to "parentheses" because when I think of brackets, I think of [], and when I think of parentheses, I think of (), and when I originally read this, I found the word confusing.
2012-07-12Fixed #18617 -- Highlighted that the app_directories template loader depends ↵Aymeric Augustin
on the order of INSTALLED_APPS. Thanks evildmp for the patch.