diff options
author | Nicolas Vigier <boklm@mageia.org> | 2013-05-31 12:48:11 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2013-05-31 12:48:11 +0000 |
commit | c875622023a26b8df8a5283b37d44790589cbb91 (patch) | |
tree | 9d6450eafdfa341ef56ef6f00b90081387937764 | |
parent | 6c6ff997a0c19a3edbf7b6fd2cb91af2ac71567e (diff) | |
download | mgatres-c875622023a26b8df8a5283b37d44790589cbb91.tar mgatres-c875622023a26b8df8a5283b37d44790589cbb91.tar.gz mgatres-c875622023a26b8df8a5283b37d44790589cbb91.tar.bz2 mgatres-c875622023a26b8df8a5283b37d44790589cbb91.tar.xz mgatres-c875622023a26b8df8a5283b37d44790589cbb91.zip |
add list of people who donated in JSON format
git-svn-id: svn+ssh://svn.mageia.org/svn/soft/mga-treasurer/trunk@8410 5b7c3c08-40e5-403b-9995-ace06908e4af
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | tmpl/donations_who.json | 11 | ||||
-rw-r--r-- | tmpl/index.html | 2 |
3 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,4 @@ +- add list of people who donated in JSON format - add donations_who.html page listing all people who donated money - provide some data in JSON format - sort donations by date on monthly page diff --git a/tmpl/donations_who.json b/tmpl/donations_who.json new file mode 100644 index 0000000..0895b4d --- /dev/null +++ b/tmpl/donations_who.json @@ -0,0 +1,11 @@ +[%- USE JSON ( pretty => 1 ) -%] +[%- + SET out = []; + FOREACH pa IN donations.by_pa.keys.sort; + SET n = {}; + SET n.who = donations.by_pa.$pa.who; + SET n.url = "http://treasurer.mageia.org/donations_p_${pa}.html"; + out.push(n); + END; +-%] +[% out.json -%] diff --git a/tmpl/index.html b/tmpl/index.html index 11e8382..e18c3fe 100644 --- a/tmpl/index.html +++ b/tmpl/index.html @@ -175,6 +175,8 @@ <ul> <li><a href="index.json">index.json</a>: balance, donations received in the last 30 days, and the list of the last 10 donations</li> + <li><a href="donations_who.json">donations_who.json</a>: list of people + who donated money to Mageia.Org.</li> </ul> <h2>Grisbi</h2> |