diff options
| -rw-r--r-- | fixtures/default_pages.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/fixtures/default_pages.json b/fixtures/default_pages.json new file mode 100644 index 0000000..f79727f --- /dev/null +++ b/fixtures/default_pages.json @@ -0,0 +1,26 @@ +[ + { + "pk": 1, + "model": "chimere.page", + "fields": { + "mnemonic": "project", + "available": true, + "template_path": "", + "title": "Le projet", + "content": "<p>Description of the project...</p>", + "order": 10 + } + }, + { + "pk": 2, + "model": "chimere.page", + "fields": { + "mnemonic": "legal", + "available": true, + "template_path": "", + "title": "Mentions l\u00e9gales, cr\u00e9dits", + "content": "<p>Credits</p>", + "order": 10 + } + } +] |
