Move modules into sensible locations. Introduce method of compiling documentation with Sphinx.
6 lines
103 B
Python
6 lines
103 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def home(request):
|
|
return render(request, 'core/index.html')
|