{% extends "dashboard/base.html" %} {% block title %}Models{% endblock %} {% block content %}
flowchart
Models
Assemble component configurations into simulation models
touch_app Click a model row to expand its components
explore Use View to open the detail & run page
widgets Add components in the Component Library first
{% if sim_data %}
{% for entry in sim_data %}
flowchart {{ entry.obj.name }} #{{ entry.obj.id }} explore View
{% for group in entry.components %}
{{ group.icon }} {% if group.items %} {% for item in group.items %}{{ item.name }}{% if not forloop.last %}, {% endif %}{% endfor %} {% else %} {{ group.label }}: none {% endif %} {% if group.items %} {{ group.items|length }} {% endif %}
{% endfor %}
{% endfor %}
{% else %}
flowchart No simulations found in the database.
{% endif %} {% endblock %}