blob: f08fc9eef8a30a7b807505775f0a728000ddf602 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>[% config.sitename %]: Donations list</title>
</head>
<body>
<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>
</body>
</html>
|