This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
portail-citoyen2/portail_citoyen2/apps/data_source_plugin/templates/data_source_plugin/plugin.html

16 lines
393 B
HTML

{% for source in data_sources %}
{% if plugin.debug %}
<pre style="white-space: pre-wrap">
Url: {{ source.url }}
Content:
{{ source.content|pprint }}
</pre>
{% elif source.kind == 'rss' %}
{% for entry in source.content.entries|dictsort:"updated_parsed" %}
<p><a href="{{ entry.link }}">{{ entry.title }}</a></p>
{% endfor %}
{% endif %}
{% endfor %}