Load groups_de when creating the database

This commit is contained in:
Oskar Hahn 2012-11-25 00:58:19 +01:00
parent ab4b117a93
commit fddf929ab5
2 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,7 @@ recursive-include openslides/assignment/static *
recursive-include openslides/config/templates *
recursive-include openslides/participant/templates *
recursive-include openslides/participant/static *
include openslides/participant/initial_data.json
include openslides/participant/fixtures/groups_de.json
recursive-include openslides/poll/templates *
recursive-include openslides/projector/templates *
recursive-include openslides/projector/static *

View File

@ -252,6 +252,7 @@ def run_syncdb():
# now initialize the database
argv = ["", "syncdb", "--noinput"]
execute_from_command_line(argv)
execute_from_command_line(["", "loaddata", "groups_de"])
def set_system_url(url):