A nicer look for the documents listing

This change includes a filthy hack around how Django handles
change_list_results.html -- I'm not thrilled with it, but it's as
elegant as I could come up with.  I'm happy to field alternative ideas.
More details can be found in `documents/templatetags/hacks.py`

Specifically, this merge includes a significant facelift to the
documents listing page, moving away from the tabular layout and toward a
tileset look.  I tried fiddling with the colours, but I just don't have
any skills in that area, so we're all stuck with Django'd default
colours until someone with an eye for colour can submit a better CSS.
This commit is contained in:
Daniel Quinn
2017-01-29 19:43:35 +00:00
parent 66a1b50e9e
commit 73043dbeb2
9 changed files with 248 additions and 21 deletions

View File

@@ -52,18 +52,19 @@ if _allowed_hosts:
INSTALLED_APPS = [
'flat_responsive',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
"django_extensions",
"documents.apps.DocumentsConfig",
"flat_responsive",
"django.contrib.admin",
"rest_framework",
"crispy_forms",

View File

@@ -1 +1 @@
__version__ = (0, 3, 4)
__version__ = (0, 3, 5)