ungleich_hack_3/friendly_cat/views.py
Eric Redon 50139cea19 Initial commit of friendly_cat Django app
Base files generated using:

```sh
django-admin startapp friendly_cat
```
2020-05-11 21:44:20 +02:00

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")