summaryrefslogtreecommitdiff
path: root/docs/ref/templates
AgeCommit message (Collapse)Author
2015-09-23[1.8.x] Fixed #25386 -- Warned about differences between Engine and ↵Tim Graham
DjangoTemplates. Backport of 2634f606d55b63511ab1c50c4fad2d52fbda1b19 from master
2015-09-05[1.8.x] Removed some discussion of deprecated {% url %} behavior.Tim Graham
Backport of dbd8e32f7495fed54203376493f09adc474ebde1 from master
2015-08-08[1.8.x] Refs #25236 -- Discouraged use of ifequal/ifnotequal template tags.Tim Graham
Backport of 787cc7aa843d5c0834f56b5f8ae03b86ce553c51 from master
2015-08-08[1.8.x] Corrected some inconsistent headings in docs/ref/templates/builtins.txt.Tim Graham
Backport of 7080cef7bf12c7985d6c81822296e70d13553ef4 from master
2015-08-08[1.8.x] Updated Wikipedia links to use httpsClaude Paroz
Backport of 64982cc2fb from master.
2015-07-27[1.8.x] Fixed #25159 -- Removed brackets from class/function/method ↵Tim Graham
signatures in docs. Thanks hellbeast for the initial patch. Backport of 87d55081ea398c65b2503d22ed3907a9175ec729 from master
2015-07-04[1.8.x] Fixed #25051 -- Clarified return type of {% now %} tag.Tim Graham
Backport of a871cf422d8f7a15d3029684538136e0c92f99dc from master
2015-06-23[1.8.x] Renamed RemovedInDjango20Warning to RemovedInDjango110Warning.Tim Graham
2015-05-22[1.8.x] Fixed #24839 -- Removed references to deprecated contrib.webdesign.Tim Graham
Backport of e11a08ee155811e5f0b2a13640178f82c928c4e7 from master
2015-05-21[1.8.x] Fixed #24813 -- Documented {% include %} debug behavior varianceAndrei Kulakov
Backport of fc3409b0932959f2aca42715e9147113d0e40f79 from master
2015-05-01[1.8.x] Updated capitalization in the word "JavaScript" for consistencyDave Hodder
Backport of 08c980d752bc7f31f146facadfec3d284c4115c6 from master
2015-04-17[1.8.x] Fixed #24657 -- Fixed include template tag example.Tim Graham
Thanks pattypatpat for the report. Backport of f47c796b52a3c504d487c2484153fa5d90a25a74 from master
2015-04-14[1.8.x] Fixed typos in docs/ref/templates/api.txtTim Graham
Backport of c612786cf15e2e1d00162ed4e335e83b75e6c978 from master
2015-04-14[1.8.x] Fixed formatting in docs/ref/templates/builtins.txtMaxime Lorant
Backport of 6023312dde022d31d44373e8834431456095dc7c from master
2015-04-08[1.8.x] Fixed #24600 -- Fixed inaccurate example in template Context docs.Tim Graham
Thanks pattypatpat for the report. Backport of 3acefcefeb5283473ac35d7e842027814d57d574 from master
2015-03-31[1.8.x] Fixed typo in docs/ref/templates/builtins.txtJoost Rijneveld
Backport of 48ddc66219deaac2aa5fa3d2cb0f420404d6b8ec from master
2015-03-16[1.8.x] Documented Context.get() method.Preston Timmons
Backport of 4d9414098bd98aacd241827a01f6ad2dff71f113 from master
2015-03-11[1.8.x] Fixed typo in current_app deprecation note.Preston Timmons
Backport of 6b605be5fe5ec62f6a927f868fc0f4e3413cd9e3 from master
2015-03-05[1.8.x] Improved get_media_prefix template tag example.Aymeric Augustin
Backport of 9a4a9a8a49ed3e38f3038b8d6fc7c405256271f1 from master
2015-02-19[1.8.x] Set context.template instead of context.engine while rendering.Aymeric Augustin
This opens more possibilities, like accessing context.template.origin. It also follows the chain of objects instead of following a shortcut. Backport of 1bfcc95 from master
2015-02-15[1.8.x] Deprecated TEMPLATE_DEBUG setting.Aymeric Augustin
Backport of 15b711b from master.
2015-01-12Deprecated passing a Context to a generic Template.render.Aymeric Augustin
A deprecation path is required because the return type of django.template.loader.get_template changed during the multiple template engines refactor. test_csrf_token_in_404 was incorrect: it tested the case when the hardcoded template was rendered, and that template doesn't depend on the CSRF token. This commit makes it test the case when a custom template is rendered.
2015-01-12Fixed #24124 -- Changed context_processors in the default settings.pyCollin Anderson
2015-01-11Fixed spelling errors in docs.Tim Graham
2015-01-10Improved template ugrading docs.Aymeric Augustin
Recommending Template(template_code) was dumb. Described alternatives.
2015-01-10Updated templates API reference.Aymeric Augustin
Accounted for multiple template engines and made a few small fixes.
2015-01-10Added release notes and upgrade instructions for templates.Aymeric Augustin
2015-01-10Wrote main documentation for templates.Aymeric Augustin
2015-01-10Moved doc on the DTL's syntax to the ref/ section.Aymeric Augustin
This makes room for a more general introduction about templating. Updated some links to point to the new location, but kept those that didn't talk specifically about the DTL.
2015-01-05Fixed #24022 -- Deprecated the ssi tag.Preston Timmons
2014-12-28Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin
2014-12-28Deprecated TEMPLATE_DIRS.Aymeric Augustin
2014-12-28Deprecated TEMPLATE_LOADERS.Aymeric Augustin
2014-12-28Deprecated TEMPLATE_STRING_IF_INVALID.Aymeric Augustin
2014-12-28Deprecated ALLOWED_INCLUDE_ROOTS.Aymeric Augustin
2014-12-28Moved context_processors from django.core to django.template.Aymeric Augustin
2014-12-28Supported multiple template engines in render_to_string.Aymeric Augustin
Adjusted its API through a deprecation path according to the DEP.
2014-12-19Used https for most *.python.org linksClaude Paroz
2014-12-17Fixed display of lists after website redesignMarkus Holtermann
Thanks Brian Jacobel for the report. refs django/djangoproject.com#197
2014-11-25Fixed #23914 -- Improved {% now %} to allow storing its result in the context.Baptiste Mispelon
Thanks to Tim for the review.
2014-11-23Deprecated dirs argument to override TEMPLATE_DIRS.Aymeric Augustin
Cancels 2f0566fa. Refs #4278.
2014-11-18Fixed #23849 -- Documented the locmem.Loader class.Preston Timmons
2014-11-16Moved all template loaders under django.template.loaders.Aymeric Augustin
Reformatted the code of base.Loader according to modern standards. Turned the test template loader into a regular locmem.Loader -- but didn't document it. Added a normal deprecation path for BaseLoader which is a public API. Added an accelerated deprecation path for TestTemplateLoader which is a private API.
2014-11-03Fixed versionchanged indentation in docs/.Berker Peksag
2014-11-03Moved CSRF docs out of contrib.Thomas Chaumeny
2014-10-30Fixed #23736 -- Corrected the description of the value that ↵Tim Graham
silent_variable_failure uses. Thanks Aymeric Augustin for the report.
2014-10-30Fixed #23737 -- Recommended the render() shortcut more strongly.Tim Graham
Thanks Aymeric Augustin for the report.
2014-10-30Fixed #23558 -- documented slugify limitationsDavid Hoffman
2014-10-21Fixed firstof docs error introduced in 1ea44a; refs #17906.Ralph Broenink
2014-10-16Fixed #12008 -- Clarified relationship between template blocks and includes.mcgeeco
Thanks Daniele Procida for suggested wording.