7 lines
155 B
Python
7 lines
155 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def index(request):
|
|
"""The home page for Learning Log."""
|
|
return render(request, 'learning_logs/index.html')
|