fix big cannot-edit-item bug, caused by earlier reloc of all item-based templates.
authorgfawcett <gfawcett@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Tue, 21 Apr 2009 23:17:41 +0000 (23:17 +0000)
committergfawcett <gfawcett@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Tue, 21 Apr 2009 23:17:41 +0000 (23:17 +0000)
git-svn-id: svn://svn.open-ils.org/ILS-Contrib/servres/trunk@377 6d9bc8c9-1ec2-4278-b937-99fde70a366f

conifer/syrup/views/items.py

index 77e1500..53d9162 100644 (file)
@@ -203,7 +203,7 @@ def item_edit(request, course_id, item_id):
     course = get_object_or_404(models.Course, pk=course_id)
     item = get_object_or_404(models.Item, pk=item_id, course__id=course_id)
     item_type = item.item_type
-    template = 'item_add_%s.xhtml' % item_type.lower()
+    template = 'item/item_add_%s.xhtml' % item_type.lower()
     parent_item = item.parent_heading
 
     if request.method != 'POST':