Fix incorrect CSS path on ModelAdmin's 'choose a parent page' view - fixes #2703

This commit is contained in:
Matt Westcott 2016-06-15 12:30:47 +01:00
parent 3b7a2442db
commit 8121b633a4
3 changed files with 3 additions and 1 deletions

View file

@ -12,6 +12,7 @@ Changelog
* Form builder now validates against multiple fields with the same name (Richard McMillan)
* Fix: Email templates and document uploader now support custom `STATICFILES_STORAGE` (Jonny Scholes)
* Fix: Removed alignment options (deprecated in HTML and not rendered by Wagtail) from `TableBlock` context menu (Moritz Pfeiffer)
* Fix: Fixed incorrect CSS path on ModelAdmin's "choose a parent page" view
1.5.2 (08.06.2016)

View file

@ -27,6 +27,7 @@ Bug fixes
* Email templates and document uploader now support custom `STATICFILES_STORAGE` (Jonny Scholes)
* Removed alignment options (deprecated in HTML and not rendered by Wagtail) from `TableBlock` context menu (Moritz Pfeiffer)
* Fixed incorrect CSS path on ModelAdmin's "choose a parent page" view
Upgrade considerations

View file

@ -5,7 +5,7 @@
{% block extra_css %}
{% include "wagtailadmin/pages/_editor_css.html" %}
<link rel="stylesheet" href="{% static 'modeladmin/css/choose_parent_page.css' %}" type="text/css"/>
<link rel="stylesheet" href="{% static 'wagtailmodeladmin/css/choose_parent_page.css' %}" type="text/css"/>
{% endblock %}
{% block extra_js %}