summaryrefslogtreecommitdiff
path: root/django/views/templates
AgeCommit message (Collapse)Author
2026-01-09Refs #35875 -- Added dark mode support in additional views.mbcodes
Thanks Thibaud Colas for the review.
2026-01-09Fixed #36853 -- Fixed technical 500 and 404 email CSS support.Andrea Zanotto
2025-09-26Refs #28526 -- Provided URLResolver namespace in technical 404 template.Jacob Walls
This avoids looking up the nonexistent "name" attribute on URLResolver, which logs verbosely.
2024-10-17Fixed #35795 -- Added role="button" to links acting as buttons for screen ↵Jay Patel
readers.
2024-05-21Removed hardcoded docs version in csrf template.Ryan Hiebert
2024-02-23Fixed #35140 -- Increased font size in debug views.erosselli
2024-02-14Fixed #35195 -- Removed unnecessary type="text/css" attributes from <style> ↵Cosmic Process
tags.
2024-02-12Fixed #35171 -- Updated the design of the "Congrats" page.Alexander Lazarević
2024-02-12Corrected indentation of the "Congrats" page template.Alexander Lazarević
2024-01-31Fixed #35143 -- Improved accessibility of 404/500 debug pages.Marijke Luttekes
This: - changes the header, main, and footer content areas to be rendered in a <header>, <main>, and <footer> tags, - adds scope attributes to <th>, - uses <code> for a patterns list, - uses <small> instead of <span>.
2024-01-30Made cosmetic edits to rocket SVG in the "Congrats" page.Baptiste Mispelon
This removes unnecessary <circle> from rocket SVG, and avoids repeating the SVG rocket's color for the porthole.
2023-05-24Fixed #34592 -- Removed Safari/Chrome workaround for system fonts.minusf
2023-05-22Fixed #34588 -- Removed usage of nonexistent stylesheet in the 'Congrats' page.gtleee
Regression in d46cc15c51219c3418e0287bf018c5ba1346f825.
2023-02-17Fixed #34343 -- Moved built-in templates to filesystem.Nick Pope
2022-11-29Fixed #33701 -- Added fine-grained error locations to the technical 500 ↵Giebisch
debug page.
2022-11-25Fixed #33747 -- Added exception notes to the technical 500 debug page.Giebisch
2022-08-17Fixed #33878 -- Switched to system fonts in CSS.Tom Carrick
2022-07-25Simplified various built-in templates.Nick Pope
- Using the {% plural %} tag. - Using the |yesno filter. - Using the |unordered_list filter. - Unnesting {% if %} where not required. - Not duplicating {% if %}.
2022-07-25Standardized formatting in technical 500 template.Nick Pope
- Prefer use of `k` and `v` instead of `var.0` and `var.1`. - Fixed indentation of #files-info block to match adjacent blocks.
2022-01-28Fixed #33461 -- Escaped template errors in the technical 500 debug page.Keryn Knight
2022-01-24Fixed wrapping of long values in technical 500 debug page.Mariusz Felisiak
Follow up to d5f2d5d6041d477fc8f5fc53c20112e07ef104fc.
2022-01-24Fixed #33457 -- Fixed "Local vars" scrolling in technical 500 debug page.Hrushikesh Vaidya
Thanks Keryn Knight for the report and the initial patch.
2022-01-22Stopped including type="text/css" attributes for CSS link tags.Claude Paroz
2022-01-13Fixed #33396 -- Added view name to technical 500 debug page.Hrushikesh Vaidya
2021-12-29Fixed wrapping of long values in technical 500 debug page.Keryn Knight
2021-09-10Fixed #33096 -- Fixed <form> nesting in technical 500 template.Jan Schär
This also prevents sending <form> tags in emails.
2021-04-30Fixed #32698 -- Moved HttpRequest.get_raw_uri() to ↵Hasan Ramezani
ExceptionReporter._get_raw_insecure_uri().
2021-04-27Refs 32637 -- Made technical 404 debug page display exception message when ↵Mariusz Felisiak
URL is resolved. Follow up to 3b8527e32b665df91622649550813bb1ec9a9251.
2021-04-13Fixed #32637 -- Restored exception message on technical 404 debug page.Mariusz Felisiak
Thanks Atul Varma for the report.
2021-04-09Fixed #32624 -- Avoided using JavaScript for "Local vars" show/hide in ↵Collin Anderson
technical 500 debug page.
2020-11-24Improved bidirectionality on the 'Congrats' page.Thibaud Colas
Follow up to 9012033138fa41b573d3e4e3f0dfa8b94a4719c6.
2020-11-20Fixed #32053 -- Fixed accessibility issues on the 'Congrats' page.Thibaud Colas
- Add lang attribute. - Use the same text for the page’s main heading, and title. - Add underlines for all links in copy. - Stop using h2 for link to the Django page. - Use h1 for the main heading. - Remove useless type attribute on style element. - Remove grey text that fails contrast checks. - Use a shade of grey that passes AAA contrast requirements. - Stop using h4 for footer links. - Add full stop in block-level links so VoiceOver correctly pauses between runs of text. - Hide main artwork for screen reader users. - Update SVG icons markup to be screen-reader friendly. - Switch options to be block-level links. - Remove unused markup.
2020-11-20Added explicit HTMLElement.dir attribute in templates.Author: Nick Pope
2020-11-10Refs #31672 -- Made technical 500 debug page include exceptions without ↵Hasan Ramezani
tracebacks.
2020-10-12Fixed #32087 -- Made technical 500 debug page use HTTPS for sharing traceback.nik258heda
2020-10-01Fixed #32051 -- Fixed rocket animation on the 'Congrats' page.Thibaud Colas
- Fixed congratulations smoke being cropped. - Refactored congratulation rocket so the animation can be stopped. - Made animation respect user preference for reduced animation. - Made rocket animation stop after 7s.
2020-10-01Refs #32051 -- Cleaned up CSS and SVG in the 'Congrats' page.Thibaud Colas
- Removed unnecessary vendor prefixes. - Removed unused CSS and SVG code. - Removed invalid CSS. - Removed IE9-only browser reset styles. - Fixed animation on Firefox.
2020-09-07Fixed #31791 -- Made technical 404 debug page display the tried URL patterns ↵Jon Dufresne
for Http404.
2020-07-08Refs #30400 -- Improved typography in debug and csrf templates.Jon Dufresne
2020-04-09Fixed #30779 -- Improved selection of filenames in technical 500 debug page.Daniel Hahler
2020-01-14Fixed <span> nesting in technical 500 template.Daniel Hahler
2020-01-10Fixed #23004 -- Added request.META filtering to SafeExceptionReporterFilter.Carlton Gibson
Co-authored-by: Ryan Castner <castner.rr@gmail.com>
2019-12-18Refs #30585 -- Updated project templates and tests to use (block)translate tags.Mike Hansen
2019-12-11Fixed #31080 -- Removed redundant type="text/javascript" attribute from ↵Jon Dufresne
<script> tags.
2019-07-29Fixed #30411 -- Improved formatting of text tracebacks in technical 500 ↵Jerrod Martin
templates. Co-Authored-By: Daniel Hahler <git@thequod.de>
2019-06-28Fixed #30400 -- Improved typography of user facing strings.Jon Dufresne
Thanks Claude Paroz for assistance with translations.
2019-04-05Fixed bidirectionality on the congrats page.Majid Vaghari
2018-12-21Fixed #29995 -- Used higher contrast colors in debug page.Zach Garwood
2018-12-21Removed an overridden CSS rule in debug page.Tim Graham
2018-08-22Refs #29654 -- Replaced three dots with ellipsis character in output strings.Claude Paroz