From 2dbf9cb7437d224c625f68de3e904582759dab10 Mon Sep 17 00:00:00 2001 From: erickson Date: Wed, 5 Mar 2008 17:05:21 +0000 Subject: [PATCH] have to commit to repair the name change git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@8866 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../acq/financial/view_funding_sources.html | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_sources.html diff --git a/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_sources.html b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_sources.html new file mode 100644 index 0000000000..2a19d9f013 --- /dev/null +++ b/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/view_funding_sources.html @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +<%inherit file='../base.html'/> +<%namespace file='../../common/widgets.html' name='widget'/> +<%def name="page_title()">${_('View Funding Source')} +<%def name="block_content()"> + +<% source = c.oils.acq.funding_source.value %> + +
+
${source.name()}
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + +
${_('Funding Source Owner')}${source.owner().name()}
${_('Funding Source Currency Type')}${source.currency_type()}
${_('Funding Source Credit Total')}${source.summary()['credit_total']}
${_('Funding Source Allocation Total')}${source.summary()['allocation_total']}
${_('Funding Source Balance')}${source.summary()['balance']}
+ -- 2.11.0