add date_list; LogsPage; ListPage

This commit is contained in:
bkfox
2016-07-22 12:38:42 +02:00
parent ba3bf68e33
commit 3975c222c6
11 changed files with 491 additions and 112 deletions

View File

@ -1,12 +1,2 @@
from django.shortcuts import render
from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger
from aircox.cms.models import *
def index_page(request):
context = {}
if ('tag' or 'search') in request.GET:
qs = Publication.get_queryset(request, context = context)
return render(request, 'index_page.html', context)