{% import "edit_macros.html" as edit_macros %} {% extends "base.html" %} {% block body %} {% block edit_form_prefix %}

Edit Container Entity

{% 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.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) }}

Homepage URLs

Landing page or mirror locations of container as a whole.

{% for cfield in form.urls %}
{{ cfield() }} {{ edit_macros.form_field_errors(cfield) }}
{% endfor %}


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 %}