diff -r 2fea6fdc024c -r af59627418e7 src/egonomy/models.py --- a/src/egonomy/models.py Tue Jun 25 17:24:41 2013 +0200 +++ b/src/egonomy/models.py Tue Jun 25 18:43:09 2013 +0200 @@ -95,6 +95,11 @@ description = models.TextField(blank=True, null=True) tags = models.TextField(blank=True, null=True) + @property + def tag_list(self): + # tags in list + return self.tags.split(",") + def get_viewbox_info(self): if not self.coordinates or self.coordinates=="MZ" or self.coordinates=="":