blob: e9171e7e0a63feef7b8885960440dd53b1cf9fba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>[% config.sitename %]: Donations list</title>
[%- INCLUDE head.html -%]
</head>
<body>
[%- INCLUDE body_top.html -%]
<h1 id='mgnavt'><a href="index.html">treasurer</a> » <a href="donations.html">donations</a> » all</h1>
<div class="content">
<h1>Mageia.Org donations list</h1>
<ul>
[%- USE date(format='%Y/%m/%d') -%]
[% FOR don IN donations.donations.sort('date').reverse %]
<li><b><a href="donations_p_[% don.pa %].html">[% don.who %]</a></b> donated <b>[% don.amount %]</b> Euros on [% date.format(don.date) %] ([% don.sc_name %])</li>
[%- END -%]
</ul>
</div>
</body>
</html>
|