8 lines
198 B
Python
8 lines
198 B
Python
from django.http import HttpResponse
|
|
from django.shortcuts import render
|
|
|
|
def index(request):
|
|
return render(request, 'faerun_calendar/index.html')
|
|
# return HttpResponse('<h1>Calendar</h1>')
|
|
|