added basic view of which files were matched with which people
This commit is contained in:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user