9 lines
159 B
Python
9 lines
159 B
Python
"""
|
|
Views for the friendly_cat Django app
|
|
"""
|
|
|
|
from django.shortcuts import render
|
|
|
|
|
|
def index(request):
|
|
return render(request, "friendly_cat/index.html")
|