diff options
author | Cédric Bonhomme <kimble.mandel+bitbucket@gmail.com> | 2015-01-15 17:59:30 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel+bitbucket@gmail.com> | 2015-01-15 17:59:30 +0100 |
commit | 371f644929bd6ebebffb2895e08ee7cd5fd9e824 (patch) | |
tree | d505fceda18f7035ebb73ee17b8aabade912cb28 | |
parent | Updated footer of HTML export. (diff) | |
parent | buttons on the left is easier (diff) | |
download | newspipe-371f644929bd6ebebffb2895e08ee7cd5fd9e824.tar.gz newspipe-371f644929bd6ebebffb2895e08ee7cd5fd9e824.tar.bz2 newspipe-371f644929bd6ebebffb2895e08ee7cd5fd9e824.zip |
Merged in jaesivsm/pyaggr3g470r/update/style (pull request #5)
buttons on the left is easier
-rw-r--r-- | pyaggr3g470r/templates/home.html | 12 |
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> |