Files
onepilot/selfdrive/frogpilot/fleetmanager/templates/error_logs.html
T
Vehicle Researcher bd2ed6664a Carrot2-v9
2025-08-03 19:15:56 +09:00

15 lines
253 B
HTML

{% extends "layout.html" %}
{% block title %}
Error Logs
{% endblock %}
{% block main %}
<br>
<h1>Error Logs</h1>
<br>
{% for row in rows %}
<a href="/error_logs/{{ row }}">{{ row }}</a><br>
{% endfor %}
{% endblock %}