mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-08-31 15:31:29 +02:00
Project skeleton
This commit is contained in:
parent
2e443ea77b
commit
8c62d68803
2451 changed files with 1134868 additions and 17 deletions
11
dashboard/views.py
Normal file
11
dashboard/views.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
|
||||
def view_dashboard(request):
|
||||
context = {'page_title': 'Welcome to routerfleet'}
|
||||
return render(request, 'dashboard/welcome.html', context=context)
|
||||
|
||||
|
||||
def view_status(request):
|
||||
context = {'page_title': 'Welcome to routerfleet'}
|
||||
return render(request, 'dashboard/status.html', context=context)
|
Loading…
Add table
Add a link
Reference in a new issue