web/views/bookmark.py
branchtls-sprint
changeset 1639 375c857aa0f5
parent 1533 bcd4bfff658b
child 1721 694f6a50e138
--- a/web/views/bookmark.py	Mon May 04 12:53:42 2009 +0200
+++ b/web/views/bookmark.py	Mon May 04 12:53:59 2009 +0200
@@ -12,7 +12,7 @@
 from cubicweb.selectors import implements
 from cubicweb.web.htmlwidgets import BoxWidget, BoxMenu, RawBoxItem
 from cubicweb.web import uicfg, action, box, formwidgets
-from cubicweb.web.views.baseviews import PrimaryView
+from cubicweb.web.views import primary
 
 uicfg.rcategories.tag_relation('primary', ('Bookmark', 'path', '*'), 'subject')
 uicfg.rwidgets.tag_relation(formwidgets.TextInput, ('Bookmark', 'path', '*'), 'subject')
@@ -29,7 +29,7 @@
         return self.rset.get_entity(self.row or 0, self.col or 0).actual_url()
 
 
-class BookmarkPrimaryView(PrimaryView):
+class BookmarkPrimaryView(primary.PrimaryView):
     __select__ = implements('Bookmark')
 
     def cell_call(self, row, col):