mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-05 22:14:45 +00:00
Add missing collection column in wagtaildocs/documents/list.html (#5110)
This commit is contained in:
parent
c2a83b92da
commit
233bb17789
3 changed files with 5 additions and 0 deletions
|
|
@ -19,6 +19,7 @@ Changelog
|
|||
* Fix: Escape backslashes in `postgres_search` queries (Hammy Goonan)
|
||||
* Fix: Parent page link in page chooser search results no longer navigates away (Asanka Lihiniyagoda, Sævar Öfjörð Magnússon)
|
||||
* Fix: `routablepageurl` tag now correctly omits domain part when multiple sites exist at the same root (Gassan Gousseinov)
|
||||
* Fix: Added missing collection column specifier on document listing template (Sergey Fedoseev)
|
||||
|
||||
|
||||
2.4 (19.12.2018)
|
||||
|
|
|
|||
|
|
@ -34,6 +34,7 @@ Bug fixes
|
|||
* Escape backslashes in ``postgres_search`` queries (Hammy Goonan)
|
||||
* Parent page link in page chooser search results no longer navigates away (Asanka Lihiniyagoda, Sævar Öfjörð Magnússon)
|
||||
* ``routablepageurl`` tag now correctly omits domain part when multiple sites exist at the same root (Gassan Gousseinov)
|
||||
* Added missing collection column specifier on document listing template (Sergey Fedoseev)
|
||||
|
||||
|
||||
Upgrade considerations
|
||||
|
|
|
|||
|
|
@ -2,6 +2,9 @@
|
|||
<table class="listing">
|
||||
<col />
|
||||
<col />
|
||||
{% if collections %}
|
||||
<col />
|
||||
{% endif %}
|
||||
<col width="16%" />
|
||||
<thead>
|
||||
<tr class="table-headers">
|
||||
|
|
|
|||
Loading…
Reference in a new issue