SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 7ef51040 authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Update production event choices

parent a5080dcc
No related branches found
No related tags found
No related merge requests found
from .base import *
# THE MAIN THING HERE
DEBUG = True
# Static and media
STATIC_ROOT = '/Users/jscaux/Sites/SciPost.org/scipost_v1/local_files/static/'
MEDIA_ROOT = '/Users/jscaux/Sites/SciPost.org/scipost_v1/local_files/media/'
WEBPACK_LOADER['DEFAULT']['BUNDLE_DIR_NAME'] =\
'/Users/jscaux/Sites/SciPost.org/scipost_v1/local_files/static/bundles/'
MAILCHIMP_API_USER = get_secret("MAILCHIMP_API_USER")
MAILCHIMP_API_KEY = get_secret("MAILCHIMP_API_KEY")
......@@ -12,6 +12,7 @@ PRODUCTION_EVENTS = (
('message_supervisor_to_officer', 'Message from Supervisor to Officer'),
('message_officer_to_supervisor', 'Message from Officer to Supervisor'),
('proofs_produced', 'Proofs have been produced'),
('proofs_checked_by_supervisor', 'Proofs have been checked by Supervisor'),
('proofs_sent_to_authors', 'Proofs sent to Authors'),
('proofs_returned_by_authors', 'Proofs returned by Authors'),
('corrections_implemented', 'Corrections implemented'),
......
# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2017-05-22 08:21
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('production', '0002_auto_20170517_1942'),
]
operations = [
migrations.AlterField(
model_name='productionevent',
name='event',
field=models.CharField(choices=[('assigned_to_supervisor', 'Assigned by EdAdmin to Supervisor'), ('message_edadmin_to_supervisor', 'Message from EdAdmin to Supervisor'), ('message_supervisor_to_edadmin', 'Message from Supervisor to EdAdmin'), ('officer_tasked_with_proof_production', 'Supervisor tasked officer with proofs production'), ('message_supervisor_to_officer', 'Message from Supervisor to Officer'), ('message_officer_to_supervisor', 'Message from Officer to Supervisor'), ('proofs_produced', 'Proofs have been produced'), ('proofs_checked_by_supervisor', 'Proofs have been checked by Supervisor'), ('proofs_sent_to_authors', 'Proofs sent to Authors'), ('proofs_returned_by_authors', 'Proofs returned by Authors'), ('corrections_implemented', 'Corrections implemented'), ('authors_have_accepted_proofs', 'Authors have accepted proofs')], max_length=64),
),
]
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