mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-24 23:02:06 +08:00
6fd591e4b5
* Update README.md
* add error troubleshooting and delScreenRecords btn
* Revert "Update README.md"
This reverts commit 5d22fe815f.
* complete coment at paths
* add button to delete screen record
* remove button to delete screen record
* index cleanup
* rename
* simpler
* same module
* no need auth on home
* ide
* name
* smaller text
* spacing
* Update README.md
* Update CHANGELOGS.md
* '\n on changelogs.md
---------
Co-authored-by: Jason Wen <haibin.wen3@gmail.com>
15 lines
252 B
HTML
15 lines
252 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 %}
|