add 'profiles' app and route

This commit is contained in:
Lexi / Zoe 2019-09-16 01:24:15 +02:00
parent 9bd3d649c9
commit ad590fbe5a
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
9 changed files with 30 additions and 1 deletions

7
profiles/views.py Normal file
View file

@ -0,0 +1,7 @@
from django.http import HttpResponse
from django.shortcuts import render
# Create your views here.
def index(request):
return HttpResponse("Hello worlds!")