Add home page and urls!

This commit is contained in:
2021-03-17 22:00:44 -05:00
parent d19eb748d2
commit 46dd3bf9b3
5 changed files with 30 additions and 2 deletions

6
forgetmenot/views.py Normal file
View File

@@ -0,0 +1,6 @@
from django.shortcuts import render
from django.views.decorators.http import require_safe
@require_safe
def home(request):
return render(request, 'home/index.html')