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

This commit is contained in:
aaron
2008-12-08 05:28:03 +01:00
parent 12118e4a59
commit 97332b8103
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)