aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-09-03 20:14:50 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-09-03 20:14:50 -0700
commitd9ff52e8c7ee1d1a252460681181a36201dfbb31 (patch)
treeb355d9ba3a809183981b8d0061d4bd8f684bdee4 /python
parentea3b8c33cf53b7e50cb353eac2c6f73f5cb75979 (diff)
downloadfatcat-d9ff52e8c7ee1d1a252460681181a36201dfbb31.tar.gz
fatcat-d9ff52e8c7ee1d1a252460681181a36201dfbb31.zip
clarify default blank form fields
Diffstat (limited to 'python')
-rw-r--r--python/fatcat_web/forms.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/fatcat_web/forms.py b/python/fatcat_web/forms.py
index 5dd43601..80b1c63d 100644
--- a/python/fatcat_web/forms.py
+++ b/python/fatcat_web/forms.py
@@ -12,7 +12,7 @@ from fatcat_client import ContainerEntity, CreatorEntity, FileEntity, \
ReleaseEntity, ReleaseContrib, FileUrl, ReleaseExtIds
release_type_options = [
- ('', 'Unknown'),
+ ('', 'Unknown (blank)'),
('article-journal', 'Journal Article'),
('paper-conference', 'Conference Proceeding'),
('article', 'Article (non-journal)'),
@@ -22,7 +22,7 @@ release_type_options = [
('stub', 'Invalid/Stub'),
]
release_stage_options = [
- ('', 'Unknown'),
+ ('', 'Unknown (blank)'),
('draft', 'Draft'),
('submitted', 'Submitted'),
('accepted', 'Accepted'),
@@ -179,6 +179,7 @@ class ReleaseEntityForm(EntityEditForm):
re.edit_extra = dict(description=self.edit_description.data)
container_type_options = (
+ ('', 'Unknown (blank)'),
('journal', 'Journal'),
('proceedings', 'Proceedings'),
('book-series', 'Book Series'),
@@ -186,7 +187,6 @@ container_type_options = (
('magazine', 'Magazine'),
('trade', 'Trade Magazine'),
('test', 'Test / Dummy'),
- ('', 'Unknown / Blank'),
)
CONTAINER_SIMPLE_ATTRS = ['name', 'container_type', 'publisher', 'issnl',