Fix project template

We should create a home page with the draft_title
This commit is contained in:
Mikalai Radchuk 2017-08-25 16:44:45 +01:00 committed by Matt Westcott
parent f0c7d5dc08
commit 99fdd8db42
2 changed files with 2 additions and 1 deletions

View file

@ -7,7 +7,7 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('wagtailcore', '0029_unicode_slugfield_dj19'),
('wagtailcore', '0040_page_draft_title'),
]
operations = [

View file

@ -22,6 +22,7 @@ def create_homepage(apps, schema_editor):
# Create a new homepage
homepage = HomePage.objects.create(
title="Home",
draft_title="Home",
slug='home',
content_type=homepage_content_type,
path='00010001',