mirror of
https://github.com/StefBuwalda/ProjectIOT.git
synced 2025-10-29 18:59:57 +00:00
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
28 lines
891 B
HTML
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 %} |