Skip to content
Snippets Groups Projects
Commit 92c7d979 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch '238-pwa-offline-can-not-be-accessed' into 'master'

Resolve "PWA /offline/ can not be accessed"

Closes #238

See merge request AlekSIS!241
parents 31ae1da1 888cccbb
No related branches found
No related tags found
Loading
Pipeline #1909 failed
......@@ -15,7 +15,6 @@ from . import views
urlpatterns = [
path("", include("pwa.urls"), name="pwa"),
path("offline/", views.offline, name="offline"),
path("about/", views.about, name="about_aleksis"),
path("admin/", admin.site.urls),
path("data_management/", views.data_management, name="data_management"),
......
......@@ -65,12 +65,6 @@ def index(request: HttpRequest) -> HttpResponse:
return render(request, "core/index.html", context)
def offline(request: HttpRequest) -> HttpResponse:
""" Offline message for PWA """
return render(request, "core/offline.html")
def about(request: HttpRequest) -> HttpResponse:
""" About page listing all apps """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment