mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-11 16:53:10 +00:00
Rename project_template homepage to "Home"
This commit is contained in:
parent
5aa8e00d77
commit
c900f71117
3 changed files with 3 additions and 1 deletions
|
|
@ -7,6 +7,7 @@ Changelog
|
|||
* Use minified versions of jQuery and jQuery UI in the admin. Total savings without compression 371 KB (Tom Dyson)
|
||||
* Hooks can now specify the order in which they are run (Gagaro)
|
||||
* Added a `submit_buttons` block to login template (Gagaro)
|
||||
* The homepage created in the project template is now titled "Home" rather than "Homepage" (Karl Hobley)
|
||||
* Fix: Marked 'Date from' / 'Date to' strings in wagtailforms for translation (Vorlif)
|
||||
* Fix: Unreliable preview is now reliable by always opening in a new window (Kjartan Sverrisson)
|
||||
* Fix: Fixed placement of `{{ block.super }}` in `snippets/type_index.html` (LB (Ben Johnston))
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ Other features
|
|||
* Use minified versions of jQuery and jQuery UI in the admin. Total savings without compression 371 KB (Tom Dyson)
|
||||
* Hooks can now specify the order in which they are run (Gagaro)
|
||||
* Added a ``submit_buttons`` block to login template (Gagaro)
|
||||
* The homepage created in the project template is now titled "Home" rather than "Homepage" (Karl Hobley)
|
||||
|
||||
Bug fixes
|
||||
~~~~~~~~~
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ def create_homepage(apps, schema_editor):
|
|||
|
||||
# Create a new homepage
|
||||
homepage = HomePage.objects.create(
|
||||
title="Homepage",
|
||||
title="Home",
|
||||
slug='home',
|
||||
content_type=homepage_content_type,
|
||||
path='00010001',
|
||||
|
|
|
|||
Loading…
Reference in a new issue