7 lines
116 B
Python
7 lines
116 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def index(request):
|
|
return render(request, 'faerun_calendar/index.html')
|
|
|