basic app structure setup

This commit is contained in:
CDaut 2022-05-29 18:34:20 +02:00 committed by CDaut
parent 22b616082b
commit be4123361f
11 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1,10 @@
from django.shortcuts import render
# Create your views here.
def viewblog(request):
return None
def addpost(request):
return render(request, 'blog/addpost.html')