SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit ea02c6d6 authored by Geert Kapteijns's avatar Geert Kapteijns
Browse files

Make management command `populate_db.py`

Right now, this only creates a contributor based on a username.
But I hope that, in the future, we can populate an entire development
database with this command.
parent 3fddda1c
No related branches found
No related tags found
No related merge requests found
from django.core.management.base import BaseCommand
from django.contrib.auth.models import User
from ...models import Contributor
class Command(BaseCommand):
def add_arguments(self, parser):
parser.add_argument(
'--username', type=str, required=True,
help='Username of user to use for contributor model')
def create_contributor(self, username):
user = User.objects.get(username=username)
contributor = Contributor(user=user, status=1, title="MR")
contributor.vetted_by = contributor
contributor.save()
def handle(self, *args, **options):
self.create_contributor(options['username'])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment