Initial commit

This commit is contained in:
2022-03-09 11:33:05 +01:00
commit fea6cdcf96
15 changed files with 233 additions and 0 deletions

7
container/views.py Normal file
View File

@@ -0,0 +1,7 @@
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world. You're at the container index.")