Project

General

Profile

Statistics
| Branch: | Revision:

root / crm / robocrm / views.py @ 7cc67b05

History | View | Annotate | Download (416 Bytes)

1
# Create your views here.
2
from django.http import HttpResponse
3

    
4
def index(request):
5
  return HttpResponse("Hello again, world!")
6

    
7
def roboauth(request, rfid_tag, mach_number):
8
  return HttpResponse("Hello, world!")
9
  #r = robocrm.objects.filter(rfid=rfid_tag)
10
  #auth_machines = r.machines.filter(id=mach_number)
11
  #if auth_machines.count() > 0 :
12
  #  return HttpResponse("1")
13
  #else
14
  #  return HttpResponse("0")
15