{% extends "base.html" %} {% set active_page = "models" %} {% block title %}Model Registry{% endblock %} {% block page_title %} Model Registry{% endblock %} {% block content %}
| Version | Stage | Run ID | Key Metrics | Registered | Actions |
|---|---|---|---|---|---|
| v{{ v.version }} | {{ v.stage }} | {{ v.run_id }} |
{% if v.metrics %} {% for k, val in v.metrics.items() %} {{ k }}: {{ val }} {% endfor %} {% else %}—{% endif %} | {{ v.created_at }} |
{% if v.stage != 'Staging' and v.stage != 'Production' %}
{% endif %}
{% if v.stage == 'Staging' %}
{% endif %}
{% if v.stage == 'Production' %}
{% endif %}
|