blob: c0c1455a4bf2e9ebe7854e9266bf95c9012de7b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?xml version="1.0"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>[% config.sitename %]: Transactions</title>
<link>[% config.siteurl %]</link>
<description>[% config.sitename %] Transactions</description>
<language>en</language>
<atom:link href="[% config.siteurl %]/transactions.rss" rel="self" type="application/rss+xml" />
[%- FOR tra IN transactions.transactions.sort('date').reverse -%]
<item>
<title>[% tra.amount %] Euros[% IF tra.notes %] - [% tra.notes %][% END %][% IF tra.ca %] - [% tra.c_name %][% END %]</title>
<link>[% config.siteurl %]/m_[% date.format(tra.date, format => '%Y-%m') %].html</link>
<guid isPermaLink="false">[% config.sitename %]:transactions:[% tra.nb %]</guid>
[%- USE date %]
<pubDate>[% date.format(tra.date, format => '%a, %d %b %Y %H:%M:%S', gmt => 1) %] GMT</pubDate>
[% IF tra.ca %]
<category>[% tra.c_name %]</category>
[% END %]
<description>
Amount: [% tra.amount %] Euros<br/>
Account: [% tra.account %]<br/>
[%- IF tra.pa -%]
Who: [% tra.who %]<br/>
[%- END %]
[%- IF tra.trt -%]
Notes: Internal transfert<br/>
[%- ELSIF tra.notes -%]
Notes: [% tra.notes %]<br/>
[%- END %]
[%- IF tra.ca -%]
Category: [% tra.c_name %][% IF tra.sc_name %] : [% tra.sc_name %][% END %]<br/>
[%- END %]
</description>
</item>
[%- END -%]
</channel>
</rss>
|