{% extends "base.html" %} {% block title %}{{ entity.name }} — SOVD Admin{% endblock %} {% block content %}

← Back to entities

{{ entity.name }}

ID: {{ entity.id }}   Type: {{ entity_type }} {% if entity.tags %}  Tags: {{ entity.tags|join(', ') }}{% endif %}

{% if data_resources %}

Data Resources

{% for dr in data_resources %} {% endfor %}
IDNameType
{{ dr.id }} {{ dr.name }} {{ dr.get('schema', {}).get('type', '') }}
{% endif %} {% if operations %}

Operations

{% for op in operations %} {% endfor %}
IDNameDescription
{{ op.id }} {{ op.name }} {{ op.description }}
{% endif %} {% if not data_resources and not operations %}

No data resources or operations configured for this entity.

{% endif %} {% endblock %}