Files
ProjectIOT/application/dashboard/templates/dashboard.html
DaanoGames 2f7a499c91 Numberplate shows on Dash
Added logs.html for the logs page
Changed dashboard.html so the numberplates show on the dashboard
Moved models.py to to the dashboard folder
2025-05-22 13:16:30 +02:00

28 lines
891 B
HTML

{%extends 'base.html' %}
{% block content %}
<div class="col-md-12">
<div class="card mb-4">
<div class="card-body">
<h5 class="card-title fs-4">Registered Numberplates</h5>
<div class="log-container" style="max-height: 250px; overflow-y: auto;">
<table class="table table-sm table-hover">
<thead>
<tr>
<th scope="col" class="fs-5">Numberplate</th>
</tr>
</thead>
<tbody>
{% for Plates in AllowedPlates %}
<tr>
<td>{{Plates.plate}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
{% endblock %}