Add form media to users/edit.html (#5390)

pull/5391/head
Matt Westcott 2019-06-17 14:31:12 +01:00
rodzic eba3357fd4
commit 77a3bf60ca
3 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -45,6 +45,7 @@ Changelog
* Fix: Make icon font implementation more screen-reader-friendly (Thibaud Colas)
* Fix: Remove duplicate labels in image gallery and image choosers for screen reader users (Helen Chapman)
* Fix: Restore custom "Date" icon for scheduled publishing panel in Edit pages Settings tab (Helen Chapman)
* Fix: Added missing form media to user edit form template (Matt Westcott)
2.5.1 (07.05.2019)

Wyświetl plik

@ -59,6 +59,7 @@ Bug fixes
* Make icon font implementation more screen-reader-friendly (Thibaud Colas)
* Remove duplicate labels in image gallery and image choosers for screen reader users (Helen Chapman)
* Restore custom "Date" icon for scheduled publishing panel in Edit pages Settings tab (Helen Chapman)
* Added missing form media to user edit form template (Matt Westcott)
Upgrade considerations

Wyświetl plik

@ -67,8 +67,10 @@
{% block extra_css %}
{{ block.super }}
{% include "wagtailadmin/pages/_editor_css.html" %}
{{ form.media.css }}
{% endblock %}
{% block extra_js %}
{{ block.super }}
{% include "wagtailadmin/pages/_editor_js.html" %}
{{ form.media.js }}
{% endblock %}