mirror of
https://github.com/perstarkse/minne.git
synced 2026-02-24 09:04:50 +01:00
18 lines
384 B
HTML
18 lines
384 B
HTML
{% extends 'body_base.html' %}
|
|
{% block main %}
|
|
<main class="flex justify-center grow mt-2 sm:mt-4 gap-6">
|
|
<div class="container">
|
|
{{plot_html|safe}}
|
|
<h2>Entities</h2>
|
|
|
|
{% for entity in entities %}
|
|
<p>{{entity.id}} - {{entity.description}} </p>
|
|
{% endfor %}
|
|
|
|
|
|
<h2 class="mt-10">Relationships</h2>
|
|
<p>{{relationships}}</p>
|
|
|
|
</div>
|
|
</main>
|
|
{% endblock %} |