Beispiel #1
0
def index(request):
    response = {}
    return template_response('index.html', response, request)
Beispiel #2
0
def visualMapImages(request):
    response = {}
    if 'userId' in request.GET:
        response['userId'] = request.GET['userId']

    return template_response('robotMap.html', response, request)
Beispiel #3
0
def webapp(request):
    response = {'robotIds': list(Robot.objects.values_list('id', flat=True).order_by('id')), 'ips': list(Misc.objects.values_list('value', flat=True).order_by('id'))}
    return template_response('robotapp.html', response, request)
Beispiel #4
0
def comingsoon(request):
    response = {}
    return template_response('comingsoon.html', response, request)
Beispiel #5
0
def contact(request):
    response = {}
    return template_response('contact.html', response, request)
Beispiel #6
0
def links(request):
    response = {}
    return template_response('links.html', response, request)
Beispiel #7
0
def resume(request):
    response = {}
    return template_response('resume.html', response, request)