forked from rc/aircox
9 lines
181 B
Python
9 lines
181 B
Python
from django.views.generic.base import TemplateView
|
|
|
|
|
|
__all__ = ("NoStationErrorView",)
|
|
|
|
|
|
class NoStationErrorView(TemplateView):
|
|
template_name = "aircox/errors/no_station.html"
|