14 lines
440 B
Python
14 lines
440 B
Python
from django.contrib import messages
|
|
from django.http import HttpResponseRedirect, HttpResponse, JsonResponse
|
|
from django.shortcuts import render, get_object_or_404
|
|
from django.urls import reverse
|
|
from django.utils.translation import gettext as _
|
|
|
|
from lazysignup.decorators import allow_lazy_user
|
|
from account.decorators import login_required
|
|
|
|
|
|
@login_required
|
|
def dashboard(request):
|
|
return render(request, 'dashboard/dashboard.html')
|