{% extends "objects/forms/form_base.html" %} {% block title %}New Object — {{ service_name }}{% endblock %} {% block content %}
{{ form.csrf_token() }} {% if 'batch' in schema and schema['batch'] %} Batch Information
{% endif %} {% set id_prefix = "object_" %} {% include "objects/forms/form_any.html" %} {% if can_copy_permissions and (config['LOAD_OBJECTS_IN_BACKGROUND'] or existing_objects) %}
{% set selected_obj_id = request.form.get('copy_permissions_object_id') %} {% if has_grant_for_previous_object and not 'action_submit' in request.form and request.args.get('previous_object_id') %} {% set selected_obj_id = request.args.get('previous_object_id') %} {% endif %}
{% endif %} {% if may_create_log_entry%}
{% if instrument_log_categories %} {% else %} {% endif %}
{% endif %}
{% endblock %}