diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-07-03 00:51:41 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-07-03 00:51:41 +0100 |
commit | dc19150eba28de83e06c47d6235c07309f92b36d (patch) | |
tree | bce48032b1c8b476894995101a604dbbbafa1c5c /core | |
parent | a89139763f2b7206dc8962aa91ac41866cb71981 (diff) | |
download | troggle-dc19150eba28de83e06c47d6235c07309f92b36d.tar.gz troggle-dc19150eba28de83e06c47d6235c07309f92b36d.tar.bz2 troggle-dc19150eba28de83e06c47d6235c07309f92b36d.zip |
[svn] whoops
Diffstat (limited to 'core')
-rw-r--r-- | core/models.py | 2 |
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)
|