aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2014-10-29 17:23:47 +0100
committerFrançois Schmidts <francois.schmidts@gmail.com>2015-01-14 10:44:25 +0100
commit7ec86e4367a97cd3121c2f7ab155652906d20ad0 (patch)
treed505fceda18f7035ebb73ee17b8aabade912cb28 /pyaggr3g470r/templates
parentUpdated footer of HTML export. (diff)
downloadnewspipe-7ec86e4367a97cd3121c2f7ab155652906d20ad0.tar.gz
newspipe-7ec86e4367a97cd3121c2f7ab155652906d20ad0.tar.bz2
newspipe-7ec86e4367a97cd3121c2f7ab155652906d20ad0.zip
buttons on the left is easier
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/home.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
index ef714100..a00f962e 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -71,20 +71,15 @@
<table class="table table-striped strict-table">
<thead>
<tr>
+ <th></th>
<th>{{ _('Feed') }}</th>
<th>{{ _('Article') }}</th>
<th>{{ _('Date') }}</th>
- <th></th>
</tr>
</thead>
<tbody>
{% for article in articles %}
<tr data-article="{{ article.id }}" data-feed="{{ article.feed_id }}">
- <td><a href="/article/redirect/{{ article.id}}" target="_blank">{{ article.source.title|safe }}</a></td>
- <td {%if filter_ == 'all' and article.readed == False %}style='font-weight:bold'{% endif %}>
- <a href="/article/{{ article.id }}">{{ article.title|safe }}</a>
- </td>
- <td class="date">{{ article.date|datetime }}</a></td>
<td>
<a href="#"><i class="glyphicon glyphicon-remove delete" title="{{ _('Delete this article') }}"></i></a>
{% if article.like %}
@@ -99,6 +94,11 @@
{% if filter_ == 'all' %}</b>{% endif %}
{% endif %}
</td>
+ <td><a href="/article/redirect/{{ article.id}}" target="_blank">{{ article.source.title|safe }}</a></td>
+ <td {%if filter_ == 'all' and article.readed == False %}style='font-weight:bold'{% endif %}>
+ <a href="/article/{{ article.id }}">{{ article.title|safe }}</a>
+ </td>
+ <td class="date">{{ article.date|datetime }}</a></td>
</tr>
{% endfor %}
</tbody>
bgstack15