OpenDroneMap-WebODM/app/views.py

9 wiersze
240 B
Python
Czysty Zwykły widok Historia

2016-08-10 20:23:17 +00:00
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
return render(request, "app/index.html", {'hello': "Hello World!"})
def dashboard(request):
return render(request, "app/dashboard.html")