From b4ba5eccbce4edd1c82a6f2462a6da18cc44a00f Mon Sep 17 00:00:00 2001 From: Julian Leucker <leuckerj@gmail.com> Date: Mon, 3 Jun 2019 11:18:42 +0200 Subject: [PATCH] =?UTF-8?q?fixed=20typo=20(failback=20=E2=86=92=20fallback?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schoolapps/timetable/fallback_view.py | 2 +- .../templates/timetable/{failback.html => fallback.html} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename schoolapps/timetable/templates/timetable/{failback.html => fallback.html} (100%) diff --git a/schoolapps/timetable/fallback_view.py b/schoolapps/timetable/fallback_view.py index 53992afd9..50103287e 100644 --- a/schoolapps/timetable/fallback_view.py +++ b/schoolapps/timetable/fallback_view.py @@ -4,4 +4,4 @@ from django.shortcuts import render @login_required def fallback(request, *args, **kwargs): - return render(request, "timetable/failback.html") + return render(request, "timetable/fallback.html") diff --git a/schoolapps/timetable/templates/timetable/failback.html b/schoolapps/timetable/templates/timetable/fallback.html similarity index 100% rename from schoolapps/timetable/templates/timetable/failback.html rename to schoolapps/timetable/templates/timetable/fallback.html -- GitLab