diff options
author | luxagraf <sng@luxagraf.net> | 2013-09-04 23:35:45 +0000 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2013-09-04 23:35:45 +0000 |
commit | 4a1ae16f4446807960ec367a2c8afebf6175304e (patch) | |
tree | c30e254b4990421284f638c13ea0024e6ce35c7f /app | |
parent | 7a93c25344f1493227faa2ab18db006184baffa6 (diff) |
added favicon and tweaked a few templates
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) |