summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2016-02-07 13:13:52 -0500
committerluxagraf <sng@luxagraf.net>2016-02-07 13:13:52 -0500
commitaa65ac8c06d493a35a5822c85f882da3ef9022f4 (patch)
treeafd7fefa02ce637055fe0b0a94856564298449f3
parent611252f03458f44119d393a5050725394ca36963 (diff)
added rating to books admin, updated TODO
-rw-r--r--app/TODO7
-rw-r--r--app/books/admin.py2
2 files changed, 2 insertions, 7 deletions
diff --git a/app/TODO b/app/TODO
index aaccb89..c50b9e1 100644
--- a/app/TODO
+++ b/app/TODO
@@ -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):