SciPost Code Repository

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

Correct journal constants

parent f74a582b
No related branches found
No related tags found
No related merge requests found
...@@ -13,14 +13,14 @@ SCIPOST_JOURNAL_PHYSICS_CODEBASES = 'SciPostPhysCodeb' ...@@ -13,14 +13,14 @@ SCIPOST_JOURNAL_PHYSICS_CODEBASES = 'SciPostPhysCodeb'
# Journal open for submission # Journal open for submission
SCIPOST_JOURNALS_SUBMIT = ( SCIPOST_JOURNALS_SUBMIT = (
(SCIPOST_JOURNAL_PHYSICS, 'SciPost Physics'), (SCIPOST_JOURNAL_PHYSICS, 'SciPost Physics'),
# (SCIPOST_JOURNAL_PHYSICS_COMMONS, 'SciPost Physics Commons'),
(SCIPOST_JOURNAL_PHYSICS_LECTURE_NOTES, 'SciPost Physics Lecture Notes'), (SCIPOST_JOURNAL_PHYSICS_LECTURE_NOTES, 'SciPost Physics Lecture Notes'),
(SCIPOST_JOURNAL_PHYSICS_PROC, 'SciPost Physics Proceedings'), (SCIPOST_JOURNAL_PHYSICS_PROC, 'SciPost Physics Proceedings'),
# (SCIPOST_JOURNAL_PHYSICS_CODEBASES, 'SciPost Physics Codebases'),
) )
# Journal closed for submission # Journal closed for submission
SCIPOST_JOURNALS_NO_SUBMIT = ( SCIPOST_JOURNALS_NO_SUBMIT = (
(SCIPOST_JOURNAL_PHYSICS_COMMONS, 'SciPost Physics Commons'),
(SCIPOST_JOURNAL_PHYSICS_CODEBASES, 'SciPost Physics Codebases'),
(SCIPOST_JOURNAL_PHYSICS_SELECT, 'SciPost Physics Select'), (SCIPOST_JOURNAL_PHYSICS_SELECT, 'SciPost Physics Select'),
) )
......
# -*- coding: utf-8 -*-
# Generated by Django 1.11.4 on 2018-10-27 16:07
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('journals', '0048_auto_20181023_2150'),
]
operations = [
migrations.AlterField(
model_name='journal',
name='name',
field=models.CharField(choices=[('SciPostPhys', 'SciPost Physics'), ('SciPostPhysLectNotes', 'SciPost Physics Lecture Notes'), ('SciPostPhysProc', 'SciPost Physics Proceedings'), ('SciPostPhysComm', 'SciPost Physics Commons'), ('SciPostPhysCodeb', 'SciPost Physics Codebases'), ('SciPostPhysSel', 'SciPost Physics Select')], max_length=100, unique=True),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.4 on 2018-10-27 16:07
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('submissions', '0037_auto_20181023_0829'),
]
operations = [
migrations.AlterField(
model_name='submission',
name='submitted_to_journal',
field=models.CharField(choices=[('SciPostPhys', 'SciPost Physics'), ('SciPostPhysLectNotes', 'SciPost Physics Lecture Notes'), ('SciPostPhysProc', 'SciPost Physics Proceedings')], max_length=30, verbose_name='Journal to be submitted to'),
),
]
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