diff options
Diffstat (limited to 'app')
-rwxr-xr-x | app/locations/models.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/locations/models.py b/app/locations/models.py index 6fc85cf..000105e 100755 --- a/app/locations/models.py +++ b/app/locations/models.py @@ -159,6 +159,7 @@ class Location(models.Model): def __unicode__(self): return self.name +""" class BirdingLocation(models.Model): location = models.ForeignKey(Location) name = models.CharField(max_length=50) @@ -173,7 +174,7 @@ class BirdingLocation(models.Model): def __unicode__(self): return self.name - +""" class Route(models.Model): name = models.CharField(max_length=200) |