aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/feeds.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-07-07 19:07:56 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-07-07 19:07:56 +0200
commit5e875745762fe5cc8f71a5a0ced293c879696fdb (patch)
tree57f3d37c533a8843ebb699bfbc8745d19d82b1db /pyaggr3g470r/templates/feeds.html
parentTypo in NEWS.rst. (diff)
downloadnewspipe-5e875745762fe5cc8f71a5a0ced293c879696fdb.tar.gz
newspipe-5e875745762fe5cc8f71a5a0ced293c879696fdb.tar.bz2
newspipe-5e875745762fe5cc8f71a5a0ced293c879696fdb.zip
Added 'warning' CSS class for table rows of disabled feeds.
Diffstat (limited to 'pyaggr3g470r/templates/feeds.html')
-rw-r--r--pyaggr3g470r/templates/feeds.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/feeds.html b/pyaggr3g470r/templates/feeds.html
index 509df190..8c30614f 100644
--- a/pyaggr3g470r/templates/feeds.html
+++ b/pyaggr3g470r/templates/feeds.html
@@ -16,7 +16,7 @@
</thead>
<tbody>
{% for feed in feeds|sort(attribute="title") %}
- <tr>
+ <tr {% if not feed.enabled %}class="warning"{% endif %}>
<td>{{ loop.index }}</td>
<td>
{% if feed.enabled %}
bgstack15