mirror of
https://github.com/Rushilwiz/global.git
synced 2025-04-09 15:00:16 -04:00
13 lines
290 B
Python
13 lines
290 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
def under_construction(request):
|
|
return render(request, "base/under_construction.html")
|
|
|
|
def index(request):
|
|
return render(request, "base/index.html")
|
|
|
|
def login(request):
|
|
return render(request, "base/login.html")
|
|
|