[svn] Initial troggle checkin

This is a development site using Django 1.0
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8034 by julian @ 10/26/2008 9:04 PM
This commit is contained in:
substantialnoninfringinguser
2009-05-13 05:13:38 +01:00
commit b503d3d588
29 changed files with 1366 additions and 0 deletions

15
expo/models_survex.py Normal file
View File

@@ -0,0 +1,15 @@
from django.db import models
class SurvexBlock(models.Model):
name = models.CharField(max_length=100)
text = models.TextField()
notes_person = models.ManyToManyField('PersonTrip', related_name="notes")
pics_person = models.ManyToManyField('PersonTrip', related_name="pics")
tape_person = models.ManyToManyField('PersonTrip', related_name="tape")
insts_person = models.ManyToManyField('PersonTrip', related_name="insts")
begin_file = models.CharField(max_length=200)
begin_char = models.IntegerField()
end_file = models.CharField(max_length=200)
end_char = models.IntegerField()
def __unicode__(self):
return unicode(name)