mirror of
https://github.com/Rushilwiz/SkoolOS.git
synced 2025-04-16 02:10:19 -04:00
13 lines
259 B
Python
13 lines
259 B
Python
from django.shortcuts import render
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
# Create your views here.
|
|
|
|
@login_required()
|
|
def home (request):
|
|
return render(request, "skoolos/home.html")
|
|
|
|
@login_required()
|
|
def profile (request):
|
|
pass
|