You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
275 B

from django.contrib.auth.decorators import login_required
from django.shortcuts import render
@login_required
def landing(
request,
):
context = {}
return render(
request,
template_name="landing/landing.html",
context=context,
)

Powered by TurnKey Linux.