work on home page, fix views & templates issues

This commit is contained in:
bkfox
2019-09-10 17:57:24 +02:00
parent 215a6ac331
commit e30d1b54ef
51 changed files with 658 additions and 276 deletions

View File

@ -44,8 +44,7 @@ class AdminSite(admin.AdminSite):
def get_urls(self):
from django.urls import path, include
urls = super().get_urls()
urls += [
urls = super().get_urls() + [
path('tools/statistics/',
self.admin_view(StatisticsView.as_view()),
name='tools-stats'),