skeleton catalog list and editor pages

This commit is contained in:
Seth Ladygo
2019-03-18 20:02:40 -07:00
parent e7bc69b3c5
commit 2ba79d9a7f
12 changed files with 11989 additions and 9 deletions

13
cataloglist/views.py Normal file
View 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')