{% import "edit_macros.html" as edit_macros %} {% extends "base.html" %} {% block body %} {% block edit_form_prefix %} {{ edit_macros.edit_link_bar('release', existing_ident, 'form') }}

Edit Release Entity

Experienced users can also use the TOML editing form to access all metadata fields in a raw format. {% if not editgroup %} You can also delete this entity. {% endif %} {% endblock %}

See the catalog style guide for schema notes, and the editing tutorial if this is your first time making an edit. {{ form.hidden_tag() }}

Editgroup Metadata

{{ edit_macros.editgroup_dropdown(form, editgroup, potential_editgroups) }}

The Basics

{{ edit_macros.form_field_inline(form.release_type, "required") }} {{ edit_macros.form_field_inline(form.title, "required") }} {{ edit_macros.form_field_inline(form.original_title) }}
{{ edit_macros.form_field_basic(form.release_year) }} {{ edit_macros.form_field_basic(form.release_date) }}
{{ edit_macros.form_field_basic(form.language) }} {{ edit_macros.form_field_basic(form.license_slug) }}
{{ edit_macros.form_field_basic(form.release_stage) }} {{ edit_macros.form_field_basic(form.withdrawn_status) }}
{{ edit_macros.form_field_inline(form.work_id) }}

Contributors

{% for cform in form.contribs %}
{{ cform.hidden_tag() }}
{{ cform.role() }}
{{ cform.raw_name() }} {{ edit_macros.form_field_errors(cform.raw_name) }}
{% endfor %}



Identifers


{{ edit_macros.form_field_inline(form.doi) }} {{ edit_macros.form_field_inline(form.wikidata_qid) }} {{ edit_macros.form_field_inline(form.isbn13) }}
{{ edit_macros.form_field_basic(form.pmid) }} {{ edit_macros.form_field_basic(form.pmcid) }}

Container


{{ edit_macros.form_field_inline(form.container_id) }} {{ edit_macros.form_field_inline(form.publisher) }}
{{ edit_macros.form_field_basic(form.pages) }} {{ edit_macros.form_field_basic(form.volume) }} {{ edit_macros.form_field_basic(form.issue) }}


Submit

{{ edit_macros.form_field_basic(form.edit_description) }} This description will be attached to the individual edit, not to the editgroup as a whole. {% block edit_form_suffix %}

Edit will be part of the current editgroup, which needs to be submited and approved before the change is included in the catalog.

{% endblock %} {% endblock %} {% block postscript %} {% endblock %}