skeleton catalog list and editor pages
This commit is contained in:
13
cataloglist/views.py
Normal file
13
cataloglist/views.py
Normal file
@ -0,0 +1,13 @@
|
||||
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 cataloglist(request):
|
||||
return render(request, 'cataloglist/cataloglist.html')
|
||||
Reference in New Issue
Block a user