SciPost Code Repository

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

add event details to collection

parent b9f0f2ab
No related branches found
No related tags found
1 merge request!61[Submissions] Add target collection to the submission form
# Generated by Django 3.2.18 on 2023-09-21 15:19
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('series', '0008_alter_collections_related_names'),
]
operations = [
migrations.AddField(
model_name='collection',
name='event_details',
field=models.TextField(blank=True, help_text='The details of the event, to be displayed as information about the collection in the paper.'),
),
]
......@@ -64,6 +64,13 @@ class Collection(models.Model):
)
event_start_date = models.DateField(null=True, blank=True)
event_end_date = models.DateField(null=True, blank=True)
event_details = models.TextField(
blank=True,
help_text=(
"The details of the event, to be displayed as information "
"about the collection in the paper."
),
)
image = models.ImageField(upload_to="series/collections/images/", blank=True)
expected_authors = models.ManyToManyField(
......
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