mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-28 16:38:17 +00:00
Fix incorrect CSS path on ModelAdmin's 'choose a parent page' view - fixes #2703
This commit is contained in:
parent
3b7a2442db
commit
8121b633a4
3 changed files with 3 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Reference in a new issue