mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-07-24 04:44:29 +02:00
11 lines
344 B
Python
11 lines
344 B
Python
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)
|