app/soc/views/site/docs/list.py
changeset 299 a1cc853a56e5
parent 294 1fdaab4a6ef2
child 303 4f1bb54ddae5
--- a/app/soc/views/site/docs/list.py	Sun Oct 12 00:08:54 2008 +0000
+++ b/app/soc/views/site/docs/list.py	Sun Oct 12 00:12:53 2008 +0000
@@ -22,7 +22,7 @@
   ]
 
 
-from soc.logic import works
+import soc.logic
 from soc.logic.helper import access
 from soc.views import simple
 from soc.views import helper
@@ -59,8 +59,7 @@
       offset=request.GET.get('offset'), limit=request.GET.get('limit'))
 
   # Fetch one more to see if there should be a 'next' link
-  docs = works.getWorksForLimitAndOffset(
-      limit + 1, offset=offset, cls=soc.models.document.Document)
+  docs = soc.logic.work_logic.getForLimitAndOffset(limit + 1, offset=offset)
 
   context['pagination_form'] = helper.lists.makePaginationForm(request, limit)