added basic view of which files were matched with which people

This commit is contained in:
2021-01-22 21:14:17 +11:00
parent ea48900564
commit 42b4880b62
2 changed files with 15 additions and 2 deletions

View File

@@ -1,5 +1,15 @@
{% extends "base.html" %}
{% block main_content %}
<h3>Placeholder</h3>
<h3>Basic AI stats</h3>
<table class="table table-striped table-sm">
<tbody><thead class="thead-light"><tr><th>File</th><th>AI Matched people</th></thead>
{% for e in entries %}
<tr><td>{{e.name}}</td><td>
{% for p in e.file_details[0].people %}
{{p.tag}}
{% endfor %}
</td></tr>
{% endfor %}
</tbody></table>
{% endblock main_content %}