SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 45880692 authored by George Katsikas's avatar George Katsikas :goat:
Browse files

add duplicate report refusal reason

parent 85e91358
No related branches found
No related tags found
No related merge requests found
......@@ -80,6 +80,7 @@ STATUS_UNCLEAR = "unclear"
STATUS_INCORRECT = "incorrect"
STATUS_NOT_USEFUL = "notuseful"
STATUS_NOT_ACADEMIC = "notacademic"
STATUS_DUPLICATE = "duplicate"
REPORT_REFUSAL_CHOICES = (
(None, "-"),
......@@ -97,6 +98,7 @@ REPORT_STATUSES = (
(STATUS_UNCLEAR, "Rejected (unclear)"),
(STATUS_NOT_USEFUL, "Rejected (not useful)"),
(STATUS_NOT_ACADEMIC, "Rejected (not academic in style)"),
(STATUS_DUPLICATE, "Rejected (duplicate)"),
)
REPORT_NORMAL = "report_normal"
......
# Generated by Django 4.2.10 on 2024-07-04 09:11
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("submissions", "0153_submission_fulfilled_expectations"),
]
operations = [
migrations.AlterField(
model_name="report",
name="status",
field=models.CharField(
choices=[
("draft", "Draft"),
("vetted", "Vetted"),
("unvetted", "Unvetted"),
("incorrect", "Rejected (incorrect)"),
("unclear", "Rejected (unclear)"),
("notuseful", "Rejected (not useful)"),
("notacademic", "Rejected (not academic in style)"),
("duplicate", "Rejected (duplicate)"),
],
default="unvetted",
max_length=16,
),
),
]
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