summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-07-03 00:51:41 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-07-03 00:51:41 +0100
commit88aec344c4b4854a0af6fcabf6a8a354b9eb2f28 (patch)
tree7eb8ee5e2a5dacbc53c091adc81121a138959aae
parentb69ae42ef24b484b533a426f09049f5ab04ed4e8 (diff)
downloadtroggle-88aec344c4b4854a0af6fcabf6a8a354b9eb2f28.tar.gz
troggle-88aec344c4b4854a0af6fcabf6a8a354b9eb2f28.tar.bz2
troggle-88aec344c4b4854a0af6fcabf6a8a354b9eb2f28.zip
[svn] whoops
-rw-r--r--core/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models.py b/core/models.py
index 8778aa1..8dda56e 100644
--- a/core/models.py
+++ b/core/models.py
@@ -236,7 +236,7 @@ class PersonExpedition(TroggleModel):
class LogbookEntry(TroggleModel):
date = models.DateField()
expedition = models.ForeignKey(Expedition,blank=True,null=True) # yes this is double-
- = 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)