| 1 | <?xml version="1.0"?> |
| 2 | <rss version="2.0"> |
| 3 | |
| 4 | <channel> |
| 5 | <title>documents CODA {{ code }}</title> |
| 6 | <link>http://intranet.auf/</link> |
| 7 | <description>les derniers documents CODA de type {{ code }}</description> |
| 8 | <language>fr</language> |
| 9 | |
| 10 | {% for d in documents %} |
| 11 | <item> |
| 12 | <title>[{{d.statut}}] {{d.code }} {{d.numero | int}} de {{d.demandeur}} pour {{d.approbateur}} : {{d.total}} {{d.devise}} sur {{ d.code_service }}</title> |
| 13 | <link>http://bacasable.auf/rest/{{d.code_rest}}/{{d.numero | int}}.txt</link> |
| 14 | <guid>http://bacasable.auf/rest/{{d.code_rest}}/{{d.numero | int}}</guid> |
| 15 | <description>Fournisseur http://bacasable.auf/rest/fournisseur/{{ d.fournisseur }}</description> |
| 16 | <pubDate>{{ d.date_modif }}</pubDate> |
| 17 | </item> |
| 18 | {% endfor %} |
| 19 | |
| 20 | </channel> |
| 21 | </rss> |
| 22 | |