Project skeleton

This commit is contained in:
Eduardo Silva 2024-03-10 21:50:12 -03:00
parent 2e443ea77b
commit 8c62d68803
2451 changed files with 1134868 additions and 17 deletions

11
dashboard/views.py Normal file
View 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)