mirror of
https://github.com/perstarkse/minne.git
synced 2026-01-18 15:56:55 +01:00
19 lines
488 B
HTML
19 lines
488 B
HTML
{% extends 'body_base.html' %}
|
|
{% block main %}
|
|
<main class="flex justify-center grow mt-2 sm:mt-4 gap-6 mb-10">
|
|
<div class="container">
|
|
<h2 class="text-2xl font-bold mb-2">Entities</h2>
|
|
{% include "knowledge/entity_list.html" %}
|
|
|
|
|
|
|
|
<h2 class="text-2xl font-bold mb-2 mt-10">Relationships</h2>
|
|
{% include "knowledge/relationship_table.html" %}
|
|
|
|
<div class="rounded-box overflow-clip mt-10 shadow">
|
|
{{plot_html|safe}}
|
|
</div>
|
|
|
|
</div>
|
|
</main>
|
|
{% endblock %} |