{% extends "base.html" %} {% block title %}Entities — PhysCom{% endblock %} {% block content %} {% if not grouped %}

No entities found. Add one or seed data via CLI.

{% else %} {% for dimension, entities in grouped.items() %}

{{ dimension }}

{% for e in entities %} {% endfor %}
ID Name Description Deps
{{ e.id }} {{ e.name }} {{ e.description }} {{ e.dependencies|length }} Edit
{% endfor %} {% endif %} {% endblock %}