mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-06-23 18:28:33 +02:00
12 lines
344 B
Python
12 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)
|