summaryrefslogtreecommitdiff
path: root/docs/ref/templates
AgeCommit message (Collapse)Author
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.
2014-09-29Fixed #17638 -- Added crosslinks between topic and reference guides.Duane Hilton
Thanks oinopion for the suggestion and jarus for the initial patch.
2014-09-21Fixed #23527 -- Removed Cheetah references in docsOla Sitarska
Thanks to @aaugustin for submitting the ticket.
2014-09-17Fixed #23499 -- Error in built-in template tag "now" documentationJoseph Dougherty
2014-09-09Avoid the word "stupid".Aymeric Augustin
There's always a better word.
2014-08-30Converted sql_queries into a lazily evaluated list.Bas Peschier
Fixed #23364. Thanks Markush2010 for the report.
2014-08-26Fixed #17719 -- Documented that template syntax sequences cannot be used as ↵Tim Graham
string literals.
2014-08-18Fixed some doc errors that caused syntax highlighting to fail.Tim Graham
2014-08-15Fixed #23269 -- Deprecated django.utils.remove_tags() and removetags filter.Tim Graham
Also the unused, undocumented django.utils.html.strip_entities() function.
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