From b1faddd33ed88c621c88e4ad9b9f58e959f26921 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Tue, 27 Nov 2012 11:28:09 -0800 Subject: [PATCH] fix batch url in row crud template --- rattail/pyramid/templates/batches/rows/crud.mako | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rattail/pyramid/templates/batches/rows/crud.mako b/rattail/pyramid/templates/batches/rows/crud.mako index c5a0daf0..f257a2a4 100644 --- a/rattail/pyramid/templates/batches/rows/crud.mako +++ b/rattail/pyramid/templates/batches/rows/crud.mako @@ -1,7 +1,7 @@ <%inherit file="/crud.mako" /> <%def name="context_menu_items()"> -
  • ${h.link_to("Back to Batch", url('batch', uuid=form.fieldset.model.batch.uuid))}
  • +
  • ${h.link_to("Back to Batch", url('batch.read', uuid=form.fieldset.model.batch.uuid))}
  • ${h.link_to("Back to Batch Rows", url('batch.rows', uuid=form.fieldset.model.batch.uuid))}