mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2025-12-10 23:57:42 +00:00
[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:
@@ -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)
|
||||
Reference in New Issue
Block a user