first commit

This commit is contained in:
ayxan
2022-08-24 17:37:03 +04:00
commit f9930c2476
53 changed files with 785 additions and 0 deletions

View File

@@ -0,0 +1 @@
from .homepage import homepage_view

View File

@@ -0,0 +1,7 @@
from django.shortcuts import render
from django.contrib.auth.decorators import login_required
@login_required(login_url='/account/login')
def homepage_view(request):
return render(request, 'homepage.html')