forked from CGM_Public/pretix_original
7 lines
151 B
Python
7 lines
151 B
Python
from django.http import HttpResponse
|
|
from django.shortcuts import render
|
|
|
|
|
|
def index(request):
|
|
return render(request, 'tixlcontrol/base.html', {})
|