We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96cd882 commit af572adCopy full SHA for af572ad
src/submission/forms.py
@@ -445,7 +445,7 @@ def clean(self):
445
446
class Meta:
447
model = models.SubmissionConfiguration
448
- exclude = ("journal",)
+ exclude = ("journal", "subtitle",)
449
450
451
class ProjectedIssueForm(forms.ModelForm):
src/submission/models.py
@@ -3284,6 +3284,7 @@ class SubmissionConfiguration(models.Model):
3284
competing_interests = models.BooleanField(default=True)
3285
comments_to_the_editor = models.BooleanField(default=True)
3286
3287
+ subtitle = models.BooleanField(default=False)
3288
abstract = models.BooleanField(default=True)
3289
language = models.BooleanField(default=True)
3290
license = models.BooleanField(default=True)
0 commit comments