From 804dc69cc613d52b1cd6993d2435a32bf0eb3409 Mon Sep 17 00:00:00 2001 From: Olexandr Date: Thu, 23 Jul 2015 13:25:54 +0300 Subject: [PATCH] Added pages fixtures --- fixtures/init-data.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/fixtures/init-data.json b/fixtures/init-data.json index 73378c1..c065f31 100644 --- a/fixtures/init-data.json +++ b/fixtures/init-data.json @@ -136,5 +136,37 @@ "city_id": 3, "salary": "$2500" } + }, + + { + "model": "project.models.Page", + "fields": { + "title": "Проекты", + "url": "/projects" + } + }, + + { + "model": "project.models.Page", + "fields": { + "title": "О компании", + "url": "/company" + } + }, + + { + "model": "project.models.Page", + "fields": { + "title": "Контакты", + "url": "/contacts" + } + }, + + { + "model": "project.models.Page", + "fields": { + "title": "Главная", + "url": "/" + } } ]