{% extends "framework.html" %} {% load static %} {% load envipytags %} {% block content %} {% block action_modals %} {% include "modals/objects/edit_model_modal.html" %} {% include "modals/objects/evaluate_model_modal.html" %} {% include "modals/objects/retrain_model_modal.html" %} {% include "modals/objects/generic_delete_modal.html" %} {% endblock action_modals %}
{{ model.name|safe }}

{{ model.description|safe }}

{% if model|classname == 'MLRelativeReasoning' or model|classname == 'RuleBasedRelativeReasoning'%}
{% for p in model.rule_packages.all %} {{ p.name|safe }} {% endfor %}
{% for p in model.data_packages.all %} {{ p.name|safe }} {% endfor %}
{% if model.eval_packages.all|length > 0 %}
{% for p in model.eval_packages.all %} {{ p.name|safe }} {% endfor %}
{% endif %}
{{ model.status }}
{% endif %} {% if model.ready_for_prediction %}
{% endif %} {% if model.app_domain %}
{% endif %} {% if model.model_status == 'FINISHED' %}
{% endif %}
{% endblock content %}