{%extends 'base.html' %} {% block content %}
Gate Control Dashboard
{{ form.hidden_tag() }}
{{ form.open_gate(class="btn btn-dark") }}
{{ form.close_gate(class="btn btn-dark") }}
{{ form.check_camera(class="btn btn-dark") }}
{{ form.debug_mode() }}
Gate Status: {{ gate_status }}
Camera Status: {{ camera_status }}
{% if debug_mode %} Debug Mode is Enabled {% endif %}
System Logs
{% for log in recent_logs %} {% endfor %}
Time Action Status
{{ log.timestamp.strftime('%H:%M:%S') }} {{ log.action }} {{ log.status }}
{% endblock %}