1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-23 09:13:23 -05:00

Use dashboard view.

This commit is contained in:
Drew Larson 2016-04-03 19:40:16 -06:00
parent d58421fa31
commit 81627e414e
3 changed files with 3 additions and 2 deletions

View File

@ -0,0 +1 @@
{% extends 'base.html' %}

View File

@ -2,5 +2,5 @@ from django.conf.urls import url
from .views import DashboardView
urlpatterns = [
url(r'^', DashboardView.as_view()),
url(r'^$', DashboardView.as_view()),
]

View File

@ -4,4 +4,4 @@ from django.views.generic import View
class DashboardView(View):
def get(self, request):
return TemplateResponse(request, 'base.html')
return TemplateResponse(request, 'dashboard.html')