{% extends "package/read.html" %} {% import 'macros/form.html' as form %} {%- set schema = h.scheming_get_dataset_schema(dataset_type) -%} {% block package_notes %} {% endblock %} {% block package_resources %} {% endblock %} {% block package_additional_info %} {% endblock %} {% block content_action %} {% endblock %} {% block content_primary_nav %} {% endblock %} {% block secondary_content %}

{% trans %}Workflow Configuration {% endtrans %}

Here you can specify which assets you can use on a workflow execution. You can select assets from your own asset inventory or from your requested assets inventory (acquired datasets). If a requested asset is not shown on the list of available assets, then this indicates that the contract has probably expired and you need to make a new agreement.

{% endblock %} {% block primary_content_inner %}

The workflow definition you want to execute defines the following input parameters. Please, specify which assets to use for each. Then you can create an execution.

{% block head_cells %} {% block head_cell_input_parameter_key %}{% endblock %} {% block head_cell_resource %}{% endblock %} {% block head_cell_representation %}{% endblock %} {% block head_cell_artifact %}{% endblock %} {% endblock head_cells %} {% for input_parameter in input_parameters %} {% block configuration_cells scoped %} {% block configuration_cell_input_parameter_key %} {% endblock %} {% block configuration_cell_resource %} {% endblock %} {% block configuration_cell_representation %} {% endblock %} {% block configuration_cell_artifact %} {% endblock %} {% endblock %} {% endfor %}
{{ _('Input Parameter Key') }}{{ _('Resource') }}{{ _('Representation') }}{{ _('Artifact') }}
{{ input_parameter.name }} {{ form.select('select-resource-' + input_parameter.name , label=_('Resource'), options=resource_options, attrs={"onchange":"getRepresentations(this)", "aria-parameter-name":input_parameter.name}) }} {{ form.select('select-representation-' + input_parameter.name, label=_('Representation'), options=[], attrs={"disabled":"", "onchange":"getArtifacts(this)", "aria-parameter-name":input_parameter.name}) }} {{ form.select('select-artifact-' + input_parameter.name, label=_('Artifact'), options=[], attrs={"disabled":"", "onchange":"updateSelectedArtifacts(this)", "aria-parameter-name":input_parameter.name}) }}
{% endblock %}