From 10bb07c483a63de06af9fe99811d6c3ba82415f6 Mon Sep 17 00:00:00 2001 From: Scott Torborg Date: Mon, 2 Nov 2009 12:43:50 -1000 Subject: [PATCH] don't escape widget forms when they are rendered --- bluechips/templates/spend/index.mako | 2 +- bluechips/templates/transfer/index.mako | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bluechips/templates/spend/index.mako b/bluechips/templates/spend/index.mako index dea0a3c..1fd1307 100644 --- a/bluechips/templates/spend/index.mako +++ b/bluechips/templates/spend/index.mako @@ -8,4 +8,4 @@ import bluechips.widgets.spend as forms

Want to ${h.link_to('change how this expenditure is divided up', h.url_for(controller='spend', action='split', id=c.id))}?

% endif -${forms.new_spend_form(c.expenditure, action=h.url_for(action='update'))} +${forms.new_spend_form(c.expenditure, action=h.url_for(action='update')) | n} diff --git a/bluechips/templates/transfer/index.mako b/bluechips/templates/transfer/index.mako index ec23631..0707973 100644 --- a/bluechips/templates/transfer/index.mako +++ b/bluechips/templates/transfer/index.mako @@ -4,4 +4,4 @@ import bluechips.widgets.transfer as forms %> -${forms.new_transfer_form(c.transfer, action=h.url_for(action='update'))} +${forms.new_transfer_form(c.transfer, action=h.url_for(action='update')) | n} -- 2.45.2