summaryrefslogtreecommitdiffstats
path: root/core/views/logbooks.py
diff options
context:
space:
mode:
Diffstat (limited to 'core/views/logbooks.py')
-rw-r--r--core/views/logbooks.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/core/views/logbooks.py b/core/views/logbooks.py
index 2f89963..7934bb3 100644
--- a/core/views/logbooks.py
+++ b/core/views/logbooks.py
@@ -17,7 +17,9 @@ and for persons: their individual pages and their perseonexpedition pages.
It uses the global object TROG to hold some cached pages.
"""
-todo = """Fix the get_person_chronology() display bug.
+todo = """- Fix the get_person_chronology() display bug.
+
+- Fix id= value preservation on editing
"""
@@ -49,8 +51,9 @@ def expedition(request, expeditionname):
"""Returns a rendered page for one expedition, specified by the year e.g. '2019'.
If page caching is enabled, it caches the dictionaries used to render the template page.
- This is not as difficult to understand as it looks. Yes there are many levels of indirection, with multiple trees being traversed at the same time. And the Django special syntax
- makes this hard for normal Python programmers.
+ This is not as difficult to understand as it looks.
+ Yes there are many levels of indirection, with multiple trees being traversed at the same time.
+ And the Django special syntax makes this hard for normal Python programmers.
Remember that 'personexpedition__expedition' is interpreted by Django to mean the
'expedition' object which is connected by a foreign key to the 'personexpedition'