7 lines
217 B
Python
7 lines
217 B
Python
from django.shortcuts import render
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
# Create your views here.
|
|
@login_required(login_url='/acceder')
|
|
def inicio(request):
|
|
return render(request, 'index.html') |