resolve conflicts

Signed-off-by: Tobias Lindenberg <tobias@lindenberg.pm>
This commit is contained in:
Tobias Lindenberg
2021-01-10 14:44:20 +01:00
5 changed files with 149 additions and 2 deletions

View File

@@ -490,6 +490,10 @@ def api_info(request):
return render(request, 'api_info.html', {})
def offline(request):
return render(request, 'offline.html', {})
def test(request):
if not settings.DEBUG:
return HttpResponseRedirect(reverse('index'))