Rename project_template homepage to "Home"

This commit is contained in:
Karl Hobley 2017-02-10 15:24:29 +00:00 committed by Matt Westcott
parent 5aa8e00d77
commit c900f71117
3 changed files with 3 additions and 1 deletions

View file

@ -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))

View file

@ -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
~~~~~~~~~

View file

@ -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',