feat: add error message page; improve admin ui; add missing test files

This commit is contained in:
bkfox
2023-09-12 21:00:44 +02:00
parent a0468899b0
commit 876e4cdfa7
28 changed files with 1242 additions and 438 deletions

8
aircox/views/errors.py Normal file
View File

@ -0,0 +1,8 @@
from django.views.generic.base import TemplateView
__all__ = ("NoStationErrorView",)
class NoStationErrorView(TemplateView):
template_name = "aircox/errors/no_station.html"