Commit d04f782c authored by Michal Čihař's avatar Michal Čihař

Add RSS feed to changes browsing

Make it also better fit to the page.
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 1faa90ed
......@@ -8,7 +8,16 @@
{% block content %}
<a class="pull-right flip" href="{% url 'changes-csv' %}?{{ request.GET.urlencode }}" title="{% trans "Download all changes as CSV" %}"><i class="fa fa-download"></i></a>
<ul class="pagination pull-right flip">
<li>
<a href="{% url 'changes-csv' %}?{{ request.GET.urlencode }}" title="{% trans "Download all changes as CSV" %}"><i class="fa fa-download"></i></a>
</li>
{% if changes_rss %}
<li>
<a href="{{ changes_rss }}" title="{% trans "Follow using RSS" %}"><i class="fa fa-rss"></i></a>
</li>
{% endif %}
</ul>
{% include "paginator.html" %}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment