This commit is contained in:
cuom1999 2020-03-17 23:57:57 -06:00
parent e820697e60
commit 9e95fd21a7
4 changed files with 135 additions and 1087 deletions

View file

@ -382,7 +382,7 @@ favicon_paths = ['apple-touch-icon-180x180.png', 'apple-touch-icon-114x114.png',
for favicon in favicon_paths:
urlpatterns.append(url(r'^%s$' % favicon, RedirectView.as_view(
url=lazystr(lambda: static('icons/' + favicon)),
url=static('icons/' + favicon)
)))
handler404 = 'judge.views.error.error404'