Add icon for RSS, RSS should show only unviewed entries

pull/15/head
Leigh Morresi 4 years ago
parent a82e9243a6
commit b1fb47e689

@ -126,7 +126,7 @@ def changedetection_app(config=None, datastore_o=None):
fg.link(href='https://changedetection.io')
for watch in sorted_watches:
if watch['unviewed']:
if not watch['viewed']:
fe = fg.add_entry()
fe.title(watch['url'])
fe.link(href=watch['url'])

@ -248,4 +248,8 @@ footer {
background: #fff;
color: #444;
text-align: center;
}
#feed-icon {
vertical-align: middle;
}

@ -15,13 +15,9 @@
<!-- user/pass r = requests.get('https://api.github.com/user', auth=('user', 'pass')) -->
</form>
<div>
<a href="/" class="pure-button button-tag {{'active' if not active_tag }}">All</a>
{% for tag in tags %}
{% if tag == "" %}
<a href="/" class="pure-button button-tag {{'active' if active_tag == tag }}">All</a>
{% else %}
<a href="/?tag={{ tag}}" class="pure-button button-tag {{'active' if active_tag == tag }}">{{ tag }}</a>
{% endif %}
{% endfor %}
</div>
@ -71,8 +67,6 @@
</td>
</tr>
{% endfor %}
</tbody>
</table>
<ul id="post-list-buttons">
@ -85,6 +79,9 @@
<a href="/api/checknow{% if active_tag%}?tag={{active_tag}}{%endif%}" class="pure-button button-tag ">Recheck
all {% if active_tag%}in "{{active_tag}}"{%endif%}</a>
</li>
<li>
<a href="{{ url_for('index', tag=active_tag , rss=true)}}"><img id="feed-icon" src="/static/images/Generic_Feed-icon.svg" height="15px"></a>
</li>
</ul>
</div>
</div>

Loading…
Cancel
Save