14 lines
283 B
Python
Executable File
14 lines
283 B
Python
Executable File
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
|
|
# Create your views here.
|
|
|
|
<<<<<<< HEAD
|
|
def index(request):
|
|
return render(request, 'tysc/index.html')
|
|
=======
|
|
|
|
def index(request):
|
|
return HttpResponse('You are in the TYSC application')
|
|
>>>>>>> backup
|