diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/TODO | 7 | ||||
-rw-r--r-- | app/books/admin.py | 2 |
2 files changed, 2 insertions, 7 deletions
@@ -2,7 +2,7 @@ universal/ utils: possibly convert to using Pandoc? Python is pretty good, but using Pandoc directly allows for epub, other formats as well. Plus standardized a bit. -Add resume, src and figments to project page, possible as top level menu itesms +Add resume project page add service worker: https://css-tricks.com/serviceworker-for-offline/ @@ -15,11 +15,6 @@ fix amp support by sanitizing html: https://github.com/duner/django-bluebox/blob/master/bluebox/converters/sanitizer.py -Climate classifications instead of geopolitical boundaries: -https://en.wikipedia.org/wiki/Köppen_climate_classification - -shapefiles: http://koeppen-geiger.vu-wien.ac.at/shifts.htm - --- #src diff --git a/app/books/admin.py b/app/books/admin.py index 4b34e88..5182659 100644 --- a/app/books/admin.py +++ b/app/books/admin.py @@ -3,7 +3,7 @@ from .models import Book, BookHighlight class BookAdmin(admin.ModelAdmin): - list_display = ('title', 'admin_thumbnail', 'isbn', 'author_name', 'read_date', 'publish_date', 'openlib_url') + list_display = ('title', 'admin_thumbnail', 'rating', 'isbn', 'author_name', 'read_date', 'publish_date') class BookHighlightAdmin(admin.ModelAdmin): |