GivingTypes Html Table Template

This HTML table has two pairs of empty braces {} on Lines 4 and 11. These braces are used by Python’s format function as place holders to inject other text. This way, the table can be used for three different tables, where the first pair of braces will receive the date range label. The second pair of braces will receive the actual rows of table corresponding to the date range.

To install this code, copy all of the code below. Create a new Text file in Special Content using the name GivingTypesHtmlTable. Then paste the code into editor and save.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
<table class="table" style="width: auto">
	<thead>
		<tr>
			<th class="large">{}</th>
			<th class="right">Church Funds($)</th>
			<th class="right">% of Total</th>
			<th class="right">Main Fund ($)</th>
			<th class="right">Other Funds ($)</th>
		</tr>
    </thead>
    {}
</table>