summaryrefslogtreecommitdiff
path: root/django/template
AgeCommit message (Expand)Author
2018-01-25Fixed #29060 -- Made {% firstof %} assign '' to the asvar if all inputs are f...Roger Gammans
2018-01-21Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne
2017-12-26Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов
2017-12-19Simplified and improved performance of floatformat filter.Mariusz Felisiak
2017-12-07Fixed #28906 -- Removed unnecessary bool() calls.Tim Graham
2017-12-07Fixed #28907 -- Removed unnecessary if statements.Tim Graham
2017-12-04Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов
2017-11-14Fixed #28795 -- Removed 'not in' checks and used dict.setdefault().Дилян Палаузов
2017-11-11Removed unneeded iter() call in IfNode.nodelist.Sergey Fedoseev
2017-10-21Fixed #28730 -- Fixed loss of precision for large integer literals in templatesClaude Paroz
2017-10-20Fixed #28662 -- Silenced join template filter error if arg isn't iterable.Mads Jensen
2017-10-18Fixed #28711 -- Fixed unordered_list template filter with lazy translations.Jonas Haag
2017-10-12Simplified IfNode.nodelistTim Graham
2017-10-12Removed unused ForNode.__iter__().Tim Graham
2017-10-05Refs #27546 -- Replaced hardcoded class name in ForNode.__repr__().Mads Jensen
2017-10-04Passed ignore_failures as a kwarg for readability in template tags.Tim Graham
2017-10-02Refs #23919 -- Removed unneeded float()/int() calls.Mariusz Felisiak
2017-09-30Removed always True if check in stringfilter decorator.Mads Jensen
2017-09-28Simplified various __eq__() methods.Mads Jensen
2017-09-25Merged startswith() calls.Mariusz Felisiak
2017-09-22Refs #27175 -- Removed exception silencing from the {% include %} template tag.Tim Graham
2017-09-20Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.Sjoerd Job Postmus
2017-09-07Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham
2017-08-23Removed unneeded iter() calls.Sergey Fedoseev
2017-08-22Refs #28502 -- Complemented stringformat tuple handling/test.Claude Paroz
2017-08-21Fixed #28502 -- Made stringformat template filter accept tuplesSrinivas Reddy Thatiparthy
2017-08-07Removed unnecessary else clause in TemplateStrings.get_template().Srinivas Reddy Thatiparthy
2017-06-28Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen
2017-06-13Fixed #28071 -- Fixed {% extends %} origin history.John D'Ambrosio
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
2017-05-27Replaced some map() and filter() calls with generators.Tom
2017-05-11Fixed #28129 -- Allowed custom template tags to use keyword-only arguments.Alexander Allakhverdiyev
2017-04-27Replaced django.utils.inspect.getargspec() with inspect.getfullargspec().Alexander Allakhverdiyev
2017-04-26Replaced temporary lists used for passing arguments with iterables.Jon Dufresne
2017-04-06Fixed #28001 -- Updated comment and tested context popping in ForNode.render().kapil garg
2017-04-03Fixed #27974 -- Kept resolved templates constant during one rendering cycle.kapil garg
2017-03-31Fixed #27359 -- Made Engine.get_default() return the first DjangoTemplates en...Carlton Gibson
2017-03-25Fixed #27956 -- Fixed display of errors in an {% extends %} child.Tim Graham
2017-02-23Refs #23919 -- Used yield from.Vytis Banaitis
2017-02-17Refs #27656 -- Updated django.template/tag docstring verbs according to PEP 257.Anton Samarchyan
2017-02-11Fixed #27722 -- Reallowed using django.Template in {% include %}.Tim Graham
2017-02-07Refs #27795 -- Removed force_text from the template layerClaude Paroz
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
2017-02-06Fixed #27783 -- Switched VariableDoesNotExist.__str__() to repr() context.Ryan O’Hara
2017-02-04Refs #27546 -- Removed hardcoded class names in __repr__() methods.Mads Jensen
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis
2017-01-30Refs #23919 -- Assumed request COOKIES and META are strClaude Paroz
2017-01-26Refs #23919 -- Replaced usage of django.utils.http utilities with Python equi...Claude Paroz
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand