1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed ReadOnlyPasswordHashWidget's template for RTL languages.

This commit is contained in:
Shai Berger
2022-09-01 00:39:08 +03:00
committed by Mariusz Felisiak
parent 974942a750
commit fdf0f62521
3 changed files with 11 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
<div{% include 'django/forms/widgets/attrs.html' %}>
{% for entry in summary %}
<strong>{{ entry.label }}</strong>{% if entry.value %}: {{ entry.value }}{% endif %}
<strong>{{ entry.label }}</strong>{% if entry.value %}: <bdi>{{ entry.value }}</bdi>{% endif %}
{% endfor %}
</div>