kopia lustrzana https://github.com/wagtail/wagtail
Add form media to users/edit.html (#5390)
rodzic
eba3357fd4
commit
77a3bf60ca
|
@ -45,6 +45,7 @@ Changelog
|
||||||
* Fix: Make icon font implementation more screen-reader-friendly (Thibaud Colas)
|
* 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: 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 page’s Settings tab (Helen Chapman)
|
* Fix: Restore custom "Date" icon for scheduled publishing panel in Edit page’s Settings tab (Helen Chapman)
|
||||||
|
* Fix: Added missing form media to user edit form template (Matt Westcott)
|
||||||
|
|
||||||
|
|
||||||
2.5.1 (07.05.2019)
|
2.5.1 (07.05.2019)
|
||||||
|
|
|
@ -59,6 +59,7 @@ Bug fixes
|
||||||
* Make icon font implementation more screen-reader-friendly (Thibaud Colas)
|
* 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)
|
* 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 page’s Settings tab (Helen Chapman)
|
* Restore custom "Date" icon for scheduled publishing panel in Edit page’s Settings tab (Helen Chapman)
|
||||||
|
* Added missing form media to user edit form template (Matt Westcott)
|
||||||
|
|
||||||
|
|
||||||
Upgrade considerations
|
Upgrade considerations
|
||||||
|
|
|
@ -67,8 +67,10 @@
|
||||||
{% block extra_css %}
|
{% block extra_css %}
|
||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
{% include "wagtailadmin/pages/_editor_css.html" %}
|
{% include "wagtailadmin/pages/_editor_css.html" %}
|
||||||
|
{{ form.media.css }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block extra_js %}
|
{% block extra_js %}
|
||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
{% include "wagtailadmin/pages/_editor_js.html" %}
|
{% include "wagtailadmin/pages/_editor_js.html" %}
|
||||||
|
{{ form.media.js }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Ładowanie…
Reference in New Issue