[svn] Added cave and logbook search, collapsible footer navbar, useless statistics page. Also fixed broken css. Toying with forms but not committing those yet.

Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8081 by aaron @ 12/8/2008 4:28 AM
This commit is contained in:
substantialnoninfringinguser
2009-05-13 05:22:14 +01:00
parent 47604b1db2
commit 29984ff15a
13 changed files with 194 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
from django.db import models
from django.contrib import admin
from django.forms import ModelForm
class Expedition(models.Model):
year = models.CharField(max_length=20, unique=True)
@@ -79,9 +79,4 @@ class PersonTrip(models.Model):
is_logbook_entry_author = models.BooleanField()
def __unicode__(self):
return "%s %s (%s)" % (self.person_expedition, self.place, self.date)
return "%s %s (%s)" % (self.person_expedition, self.place, self.date)