diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:26:14 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:26:14 +0100 |
commit | b7bf1b37acbae3e28726dc53b3f24f5829c0906a (patch) | |
tree | 58c16f1b1acceb15557300dd734dafc0fc94c7c0 /expo/models.py | |
parent | f525235e942f560be3ed054bc968245ae2a5c2c2 (diff) | |
download | troggle-b7bf1b37acbae3e28726dc53b3f24f5829c0906a.tar.gz troggle-b7bf1b37acbae3e28726dc53b3f24f5829c0906a.tar.bz2 troggle-b7bf1b37acbae3e28726dc53b3f24f5829c0906a.zip |
[svn] Added new photo model.
Logbook parser now looks for mugshots when adding people. If it finds an image, it adds a new photo model instance linked to that person. If it finds an html page, it adds the body text of that page as the person's "blurb" and then adds the mugshot.
My interface web design isn't working, sorry. Need a blank slate on that one.
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8150 by aaron @ 1/4/2009 2:06 PM
Diffstat (limited to 'expo/models.py')
-rw-r--r-- | expo/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/expo/models.py b/expo/models.py index 324d478..1723f4a 100644 --- a/expo/models.py +++ b/expo/models.py @@ -162,7 +162,7 @@ class LogbookEntry(models.Model): place = models.CharField(max_length=100,blank=True,null=True)
text = models.TextField()
class Meta:
- verbose_name_plural = "LogbookEntries"
+ verbose_name_plural = "Logbook Entries"
# several PersonTrips point in to this object
def __unicode__(self):
|