Add a h1 to default templates and a logo

This commit is contained in:
Valentin Samir
2016-06-20 13:31:59 +02:00
parent 155a919287
commit c7ac3bee7a
8 changed files with 150 additions and 5 deletions

View File

@ -28,6 +28,11 @@ except ImportError:
from urllib.parse import urlparse, urlunparse, parse_qsl, urlencode
def context(params):
params["settings"] = settings
return params
def JsonResponse(request, data):
data["messages"] = []
for msg in messages.get_messages(request):