{% extends "pages/standard.html" %}
{% block catalog_tags %}
{% include "partials/catalog_tag_tree.html" %}
{% endblock %}
{% block datasets %}
{% include "partials/dataset_tree.html" %}
{% endblock %}
{% block estimators %}
{% include "partials/estimator_tree.html" %}
{% endblock %}
{% block control %}
{% if control_type == "select_model" %}
{% include "partials/select_model.html" %}
{% elif control_type == "load_model" %}
{% include "partials/load_model.html" %}
{% elif control_type == "select_estimator" %}
{% include "partials/select_estimator.html" %}
{% elif control_type == "load_estimator" %}
{% include "partials/load_estimator.html" %}
{% elif control_type == "select_dataset" %}
{% include "partials/select_dataset.html" %}
{% elif control_type == "load_dataset" %}
{% include "partials/load_dataset.html" %}
{% elif control_type == "load_dataset_from_values" %}
{% include "partials/load_dataset_from_values.html" %}
{% elif control_type == "select_algo" %}
{% include "partials/select_algo.html" %}
{% elif control_type == "select_request" %}
{% include "partials/select_request.html" %}
{% elif control_type == "run_request" %}
{% include "partials/run_request.html" %}
{% elif control_type == "explore" %}
{% include "partials/explore_controls.html" %}
{% else %}
{% endif %}
{% endblock %}
{% block display %}
{% if display_type == "show_catalog_tag" %}
{% include "partials/show_catalog_tag.html" %}
{% elif display_type == "show_algorithm" %}
{% include "partials/show_algorithm.html" %}
{% elif display_type == "show_dataset" %}
{% include "partials/show_dataset.html" %}
{% elif display_type == "show_model" %}
{% include "partials/show_model.html" %}
{% elif display_type == "show_estimator" %}
{% include "partials/show_estimator.html" %}
{% elif display_type == "show_request" %}
{% include "partials/show_request.html" %}
{% elif display_type == "explore" %}
{% include "partials/explore_display.html" %}
{% else %}
{% endif %}
{% endblock %}