Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/ref/templates
Commit message (Collapse)AuthorAgeFilesLines
...
* Removed redundant docs addition across two commitsPreston Holmes2012-11-051-11/+0
| | | | | | d5c3c45f2fdfee09d81ad8dc7b0db8338d6d0aae a70492e6b532905c921678f35b5c60b22387f1c6
* Merge pull request #496 from pydanny/ticket_19241Bryan Veloso2012-11-051-0/+11
|\ | | | | Demonstrate how to round to integers using floatformat templatetag
| * Demonstrate how to round to integers using floatformat ↵Daniel Greenfeld2012-11-051-0/+11
| | | | | | | | templatetag
* | Fixed #19241 -- Improved floatformat docsDaniel Greenfeld2012-11-051-0/+11
|/ | | | Demonstrate how to round to integers using floatformat templatetag
* Fixed #19209 -- Documented |date:"I".Aymeric Augustin2012-10-291-1/+2
| | | | Thanks mitar for the report.
* Added section about URL reversion to URL mapper document.Ramiro Morales2012-10-081-1/+1
|
* Fix docs for context_processors.authAndrew Badr2012-09-251-1/+1
| | | Copy said it created three context variables, but only lists two. ("messages" was removed.)
* Fixed #18951 -- Formatting of microseconds.Aymeric Augustin2012-09-221-1/+1
| | | | Thanks olofom at gmail com for the report.
* Fixed #18934 - Removed versionadded/changed annotations ↵Tim Graham2012-09-212-24/+0
| | | | for Django 1.3
* Fixed #13608 - Noted that template lookups use literal ↵Tim Graham2012-09-011-0/+4
| | | | values.
* Fixed #18642 - Added a note suggesting the use of ↵Tim Graham2012-09-011-0/+4
| | | | render() rather than render_to_response() if you need RequestContext in your template.
* Fixed #16744 -- Class based view should have the view ↵Marc Tamlyn2012-08-181-0/+2
| | | | | | | object in the context Updated the most recent patch from @claudep to apply again and updated the documentation location.
* Added a missing space to the description of the `cut` ↵Florian Apolloner2012-08-041-1/+1
| | | | filter.
* Changed the word "brackets" to "parentheses"Kevin McCarthy2012-07-251-1/+1
| | | | | | 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.
* Fixed #18617 -- Highlighted that the app_directories ↵Aymeric Augustin2012-07-121-5/+15
| | | | | | template loader depends on the order of INSTALLED_APPS. Thanks evildmp for the patch.
* Fixed #18254 -- Added ability to the static template ↵Jannis Leidel2012-07-071-0/+11
| | | | tags to store the result in a contextt variable. Many thanks to Andrei Antoukh for the initial patch.
* Updated obsolete links in the documentationClaude Paroz2012-06-281-1/+1
|
* Updated TEMPLATE_CONTEXT_PROCESSORS defaults in the docs.jnns2012-06-231-0/+1
| | | | | django.core.context_processors.tz was missing from default TEMPLATE_CONTEXT_PROCESSORS in the template api documentation.
* Fixed #14502 again -- saner verbatim closing tokenChris Beaven2012-06-191-5/+5
| | | | | | | | | Previously, the closing token for the verbatim tag was specified as the first argument of the opening token. As pointed out by Jannis, this is a rather major departure from the core tag standard. The new method reflects how you can give a specific closing name to {% block %} tags.
* Removed references to changes made in 1.2.Aymeric Augustin2012-06-072-65/+11
| | | | Thanks Florian Apolloner for the patch.
* Fixed #14502 -- Added a verbatim template tag.Aymeric Augustin2012-06-071-0/+23
| | | | Thanks SmileyChris for the patch.
* Replaced documentation snippets using "gender" with less ↵Jacob Kaplan-Moss2012-06-061-73/+54
| | | | sensitive examples.
* Added alt attribute to img tags in docs.Aymeric Augustin2012-06-061-6/+7
| | | | | This is a good practice for accessibility. Thanks Jessica McKellar for the report.
* Fixed #18259 -- Specified that ROOT_URLCONF might be needed.Claude Paroz2012-06-021-3/+4
| | | | | | When using the template system in standalone mode and if the url template tag is used, ROOT_URLCONF has to be defined. Thanks techtonik for the report.
* Replaced print statement by print function (forward ↵Claude Paroz2012-04-301-1/+1
| | | | compatibility syntax).
* Fixed #18037 -- Changed behaviour of url and ssi ↵Claude Paroz2012-04-241-86/+13
| | | | | | template tags to the new syntax, as per official deprecation timeline. Thanks Ramiro Morales and Jannis Leidel for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17934 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Very minor Python formatting change to template ↵Chris Beaven2012-04-201-1/+1
| | | | | | documentation git-svn-id: http://code.djangoproject.com/svn/django/trunk@17916 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17229 -- Allow 'True', 'False' and 'None' to ↵Aymeric Augustin2012-04-101-1/+13
| | | | | | resolve to the corresponding Python objects in templates. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17894 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16939 -- Inaccurate implementation of {% comment ↵Chris Beaven2012-03-051-1/+1
| | | | | | %} presented in custom template tag 'howto' guide. Thanks sebastian for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17663 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added a note to the release notes about the new format ↵Jannis Leidel2012-02-131-0/+4
| | | | | | strings added in r17473. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17520 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17618 - Documented that variable names in ↵Timo Graham2012-02-111-1/+1
| | | | | | template must not start with an underscore; thanks guillemette and krzysiumed. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17504 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16416 -- Added two new date formatting options ↵Jannis Leidel2012-02-091-2/+8
| | | | | | for timezones and ISO week numbers. Thanks, poirier. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17473 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Made a bunch more edits up until [17418]Adrian Holovaty2012-02-031-2/+2
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17428 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Reverted parts of r17359 that could cause false ↵Aymeric Augustin2012-01-081-9/+7
| | | | | | positives in URL detection, especially on file names. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17364 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16656 -- Changed the urlize filter to accept more ↵Aymeric Augustin2012-01-081-6/+13
| | | | | | top-level domains. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17359 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Removed a redundant paragraph from the templates ↵Aymeric Augustin2011-12-241-7/+0
| | | | | | builtins doc. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17272 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17110 -- Mentionned that the {% filter %} tag ↵Aymeric Augustin2011-12-241-0/+6
| | | | | | doesn't support the 'safe' and 'escape' filters. Thanks benspaulding. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17271 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17442 - Broken link in refs/templates/builtins.txtTimo Graham2011-12-241-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17269 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17348 -- Implemented {% elif %}. Refs #3100.Aymeric Augustin2011-12-091-2/+9
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17187 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Tweaked templates/builtins.txt to make it clearer that ↵Adrian Holovaty2011-12-091-5/+15
| | | | | | cycle and firstof filters don't auto-escape. Refs #10912 git-svn-id: http://code.djangoproject.com/svn/django/trunk@17177 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16787 -- Restored the ability to {% load %} ↵Aymeric Augustin2011-11-211-2/+3
| | | | | | template tags libraries within packages. Thanks Ivan Sagalaev for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17133 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17028 - Changed diveintopython.org -> ↵Timo Graham2011-11-191-1/+1
| | | | | | diveintopython.net git-svn-id: http://code.djangoproject.com/svn/django/trunk@17115 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added support for time zones. Thanks Luke Plant for the ↵Aymeric Augustin2011-11-181-24/+39
| | | | | | | | | | | review. Fixed #2626. For more information on this project, see this thread: http://groups.google.com/group/django-developers/browse_thread/thread/cf0423bbb85b1bbf git-svn-id: http://code.djangoproject.com/svn/django/trunk@17106 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed some ReST errors in 'regroup' template tag docsLuke Plant2011-11-171-0/+14
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17103 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fix #17179: Document that yesno filter's default ↵Karen Tracey2011-11-121-1/+3
| | | | | | argument is "yes,no,maybe". Thanks CarlFK and calvinspealman. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17086 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed many more ReST indentation errors, somehow ↵Luke Plant2011-10-142-249/+249
| | | | | | accidentally missed from [16955] git-svn-id: http://code.djangoproject.com/svn/django/trunk@16983 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added some sphinx cross-reference links to the built-in ↵Julien Phalip2011-10-032-87/+101
| | | | | | template tags and filters in multiple areas of the documentation. Also fixed a few minor inconsistencies and did a little PEP8 cleanup while I was at it. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16922 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16927 -- Corrected the `{% ifchanged %}` template ↵Julien Phalip2011-09-251-4/+5
| | | | | | tag's documentation. Thanks to sebastian for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16902 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16863 -- Corrected ReST markup to avoid errors ↵Carl Meyer2011-09-161-8/+10
| | | | | | | | | | | | | | building docs. Although directives such as "note" and "warning" will accept content immediately following the directive, this is technically where arguments to the directive should go (see http://sphinx.pocoo.org/rest.html#directives). Putting the content there means that any lines beginning with an inline text role (e.g. ":setting:`DEBUG`") will be mis-interpreted as an option block for the directive. To avoid this error, there should always be a blank line between the directive start and the directive content. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16842 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Converted links to external topics so they use ↵Ramiro Morales2011-09-041-7/+4
| | | | | | | | | | | intersphinx extension markup. This allows to make these links more resilent to changes in the target URLs. Thanks Jannis for the report and Aymeric Augustin for the patch. Fixes #16586. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16720 bcc190cf-cafb-0310-a4f2-bffc1f526a37