Changes between Initial Version and Version 1 of Ticket #34383, comment 5


Ignore:
Timestamp:
Mar 22, 2023, 8:45:59 AM (18 months ago)
Author:
Mariusz Felisiak

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34383, comment 5

    initial v1  
    107107     {% endfor %}
    108108 </fieldset>
     109diff --git a/django/contrib/auth/templates/auth/widgets/read_only_password_hash.html b/django/contrib/auth/templates/auth/widgets/read_only_password_hash.html
     110index c73042b18f..447f55a99b 100644
     111--- a/django/contrib/auth/templates/auth/widgets/read_only_password_hash.html
     112+++ b/django/contrib/auth/templates/auth/widgets/read_only_password_hash.html
     113@@ -1,5 +1,5 @@
     114-<div{% include 'django/forms/widgets/attrs.html' %}>
     115+<span{% include 'django/forms/widgets/attrs.html' %}>
     116 {% for entry in summary %}
     117 <strong>{{ entry.label }}</strong>{% if entry.value %}: <bdi>{{ entry.value }}</bdi>{% endif %}
     118 {% endfor %}
     119-</div>
     120+</span>
    109121}}}
Back to Top