Commit 0fbd9143 authored by justin's avatar justin

Fix: added line break to dashboard views

parent c4940daa
......@@ -7,6 +7,6 @@ def dashboard(request):
users = WidgetUser.objects.all()
for user in users:
content += str(user) + str(user.department)
content += str(user) + str(user.department) + "<br>"
return HttpResponse(content)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment