diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-03 18:08:41 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-03 18:08:41 -0700 |
commit | b93b739314dae0bd9742e7b1273c632e6b466707 (patch) | |
tree | 82b722d1b4905b96943bc3c4724c72a5d2315510 /python/fatcat_web/templates/container_edit.html | |
parent | 6955fb200fe9e9c3529db2d0a8fde8c69b430704 (diff) | |
download | fatcat-b93b739314dae0bd9742e7b1273c632e6b466707.tar.gz fatcat-b93b739314dae0bd9742e7b1273c632e6b466707.zip |
additional container webface edit fields
Diffstat (limited to 'python/fatcat_web/templates/container_edit.html')
-rw-r--r-- | python/fatcat_web/templates/container_edit.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/container_edit.html b/python/fatcat_web/templates/container_edit.html index 238335b4..965635a4 100644 --- a/python/fatcat_web/templates/container_edit.html +++ b/python/fatcat_web/templates/container_edit.html @@ -15,10 +15,14 @@ <h3 class="ui dividing header">The Basics</h3> <br> - {{ edit_macros.form_field_inline(form.container_type, "required") }} + {{ edit_macros.form_field_inline(form.container_type) }} {{ edit_macros.form_field_inline(form.name, "required") }} + {{ edit_macros.form_field_inline(form.original_name) }} {{ edit_macros.form_field_inline(form.publisher) }} + {{ edit_macros.form_field_inline(form.country) }} {{ edit_macros.form_field_inline(form.issnl) }} + {{ edit_macros.form_field_inline(form.issne) }} + {{ edit_macros.form_field_inline(form.issnp) }} {{ edit_macros.form_field_inline(form.wikidata_qid) }} <br> |