Base django project

This commit is contained in:
Edgar P. Burkhart 2022-05-19 16:09:28 +02:00
commit 0b58580a00
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
16 changed files with 278 additions and 0 deletions

6
nummi/main/views.py Normal file
View file

@ -0,0 +1,6 @@
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello world!")