Skip to content

Commit

Permalink
Clickable article titles
Browse files Browse the repository at this point in the history
  • Loading branch information
robputt committed Dec 19, 2017
1 parent 353fa1e commit 6357ea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion this_is_scraper/templates/article_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h2>ThisIsScraper &middot; Article Viewer</h2>
{% for article in articles %}
<tr>
<td>{{ article.article_dt.isoformat() }}</td>
<td>{% if article.article_status == 'complete' %}<a href='/view?url={{ article.article_link }}'>{{ article.article_title }}</a></td>
<td>{% if article.article_status == 'complete' %}<a href='/view?url={{ article.article_link }}'>{{ article.article_title }}</a>{%else%}{{ article.article_title }}{%endif%}</td>
{% if article.article_status == 'complete' %}
<td bgcolor='lime'>{{ article.article_status }}</td>
{% elif article.article_status == 'pending' %}
Expand Down

0 comments on commit 6357ea2

Please sign in to comment.