summaryrefslogtreecommitdiffstats
path: root/expo/models.py
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-06-19 15:38:32 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-06-19 15:38:32 +0100
commitb55b17ccc1c7c4c3b1ab120603cca80a33081ba5 (patch)
tree6a9f831e2f220635986c16ed41341f4011b78586 /expo/models.py
parent59830c80af91e3881a1f49dca0a6d4eb19aa01a4 (diff)
downloadtroggle-b55b17ccc1c7c4c3b1ab120603cca80a33081ba5.tar.gz
troggle-b55b17ccc1c7c4c3b1ab120603cca80a33081ba5.tar.bz2
troggle-b55b17ccc1c7c4c3b1ab120603cca80a33081ba5.zip
[svn] Make header scroll with page because Julian said so
Diffstat (limited to 'expo/models.py')
-rw-r--r--expo/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/expo/models.py b/expo/models.py
index 28712b5..c07b86d 100644
--- a/expo/models.py
+++ b/expo/models.py
@@ -236,7 +236,8 @@ class PersonExpedition(TroggleModel):
class LogbookEntry(TroggleModel):
date = models.DateField()
expedition = models.ForeignKey(Expedition,blank=True,null=True) # yes this is double-
- author = models.ForeignKey(PersonExpedition,blank=True,null=True) # the person who writes it up doesn't have to have been on the trip
+ author = models.ForeignKey(PersonExpedition,blank=True,null=True) # the person who writes it up doesn't have to have been on the trip.
+ # Re: the above- so this field should be "typist" or something, not "author". - AC 15 jun 09
title = models.CharField(max_length=200)
cave = models.ForeignKey('Cave',blank=True,null=True)
place = models.CharField(max_length=100,blank=True,null=True,help_text="Only use this if you haven't chosen a cave")