--- /dev/null
+# -*- coding: utf-8 -*-
+<%inherit file='../base.html'/>
+<%namespace file='../../common/widgets.html' name='widget'/>
+<%def name="page_title()">${_('View Funding Source')}</%def>
+<%def name="block_content()">
+
+<% source = c.oils.acq.funding_source.value %>
+
+<div id='oils-acq-list-header' class='container'>
+ <div id='oils-acq-list-header-label'>${source.name()}</div>
+ <div id='oils-acq-list-header-actions'>
+ <a href='${c.oils.acq.prefix.value}/funding_source/create_credit?${c.oils.acq.funding_source_id.cgi_name}=${source.id()}'>${_('Add Credit')}</a>
+ </div>
+</div>
+
+<table class='oils-admin-table'>
+ <tbody>
+ <tr>
+ <td class='oils-admin-label'>${_('Funding Source Owner')}</td>
+ <td>${source.owner().name()}</td>
+ </tr>
+ <tr>
+ <td class='oils-admin-label'>${_('Funding Source Currency Type')}</td>
+ <td>${source.currency_type()}</td>
+ </tr>
+ <tr>
+ <td class='oils-admin-label'>${_('Funding Source Credit Total')}</td>
+ <td>${source.summary()['credit_total']}</td>
+ </tr>
+ <tr>
+ <td class='oils-admin-label'>${_('Funding Source Allocation Total')}</td>
+ <td>${source.summary()['allocation_total']}</td>
+ </tr>
+ <tr>
+ <td class='oils-admin-label'>${_('Funding Source Balance')}</td>
+ <td>${source.summary()['balance']}</td>
+ </tr>
+ </tbody>
+</table>
+</%def>