Port index page

This commit is contained in:
Joscha 2023-08-13 23:06:05 +02:00
parent 3bfae9c0ad
commit a36b188938
4 changed files with 18 additions and 11 deletions

View file

@ -1,10 +1,11 @@
{% extends "base.html" %}
{% import "util.html" as util %}
{% block title %}overview{% endblock %}
{% block body %}
<h2>Refs</h2>
<details open>
<summary>Tracked ({{ tracked_refs.len() }})</summary>
<dl>
@ -14,6 +15,7 @@
{% endfor %}
</dl>
</details>
<details>
<summary>Untracked ({{ untracked_refs.len() }})</summary>
<dl>
@ -23,4 +25,5 @@
{% endfor %}
</dl>
</details>
{% endblock %}