attempting to fix things that are broken. Comitting so I can get the newer version.
authorNick Retallack <nickretallack@gmail.com>
Mon, 7 Dec 2009 02:18:16 +0000 (18:18 -0800)
committerNick Retallack <nickretallack@gmail.com>
Mon, 7 Dec 2009 02:18:16 +0000 (18:18 -0800)
floof/lib/tags.py
floof/model/search.py
floof/templates/art/show.mako
floof/templates/users/view.mako

index 6186048..9bfdf04 100644 (file)
@@ -1,5 +1,5 @@
 from floof.model import Art, ArtUser, ArtUserType, Tag, TagText, User
-
+import elixir
 from dbhelpers import find_or_create
 import re
 def parse(search_string):
index 37f2d5f..f03de51 100644 (file)
@@ -24,7 +24,7 @@ class GalleryWidget(Entity):
 
     @property
     def string(self):
-        return self.search
+        return self.search.string
 
     @string.setter
     def string(self, value):
index 9356447..3ea3849 100644 (file)
@@ -38,7 +38,7 @@ ${h.end_form()}
                                ('Recipient', c.art.recipients), \
                                ('Participant', c.art.participants)):
 % for user in relations:
-<li>${label}: ${user.name}
+<li>${label}: <a href="${h.url('user_page', name=user.name)}">${user.name}</a>
 % endfor
 % endfor
 </ul>
index eb24b2d..5c2e8e6 100644 (file)
@@ -24,5 +24,5 @@ ${h.form(url(controller='user_settings', action='rel_toggle', name=c.user.name.l
 <%! from floof.lib.search import parse %>
 % for gallery in c.this_user.primary_page.galleries:
 <h2>${gallery.string}</h2>
-${macros.thumbs(parse(gallery.tags.string))}
+${macros.thumbs(parse(gallery.string))}
 % endfor