17 lines
293 B
Python
17 lines
293 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
from django.http import HttpResponse
|
|
|
|
from events.tasks import assign_reservations
|
|
|
|
|
|
def index(request):
|
|
return HttpResponse(
|
|
|
|
)
|
|
|
|
def view_score_stuff(request):
|
|
return HttpResponse(
|
|
assign_reservations()
|
|
)
|