rename file

This commit is contained in:
Stefan Allius
2025-05-04 18:22:30 +02:00
parent 9a8ca02b47
commit d693c0b48a

View File

@@ -1,18 +0,0 @@
from quart import render_template
from quart_babel import format_datetime
from . import web
from .log_handler import LogHandler
@web.route('/notes-fetch')
async def notes_fetch():
data = {
"update-time": format_datetime(format="medium"),
}
data["notes-list"] = await render_template(
'templ_notes_list.html.j2',
notes=LogHandler().get_buffer())
return data