{% 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 %}
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.
{% trans %}Workflow Configuration {%
endtrans %}
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.
{{ _('Input Parameter Key') }} | {% endblock %} {% block head_cell_resource %}{{ _('Resource') }} | {% endblock %} {% block head_cell_representation %}{{ _('Representation') }} | {% endblock %} {% block head_cell_artifact %}{{ _('Artifact') }} | {% endblock %} {% endblock head_cells %}
---|---|---|---|
{{ input_parameter.name }} | {% endblock %} {% block configuration_cell_resource %}{{ form.select('select-resource-' + input_parameter.name , label=_('Resource'), options=resource_options, attrs={"onchange":"getRepresentations(this)", "aria-parameter-name":input_parameter.name}) }} | {% endblock %} {% block configuration_cell_representation %}{{ form.select('select-representation-' + input_parameter.name, label=_('Representation'), options=[], attrs={"disabled":"", "onchange":"getArtifacts(this)", "aria-parameter-name":input_parameter.name}) }} | {% endblock %} {% block configuration_cell_artifact %}{{ form.select('select-artifact-' + input_parameter.name, label=_('Artifact'), options=[], attrs={"disabled":"", "onchange":"updateSelectedArtifacts(this)", "aria-parameter-name":input_parameter.name}) }} | {% endblock %} {% endblock %}