{% extends "layout.html" %}{% block content %}

Articles

Every article the crawler has ever seen, with the last stage it reached, its scores and its verdict.

Reset
{% include "dashboard/_pager.html" %} {% if articles.len() > 1 %}{% endif %}
{% for article in articles %}{% endfor %}{% if articles.is_empty() %}{% endif %}
first seentitlefeedwordslast stagereasonutilitytriagequalityfitratingpublished
{{ article.first_seen }} {{ article.title }} {% if let Some(feed_id) = article.feed_id %}{{ article.feed }}{% else %}{{ article.feed }}{% endif %} {{ article.words }} {% if let Some(stage) = article.stage %}{{ stage }}{% if let Some(run_id) = article.run_id %} {% if let Some(date) = article.run_date %}{{ date }}{% else %}run {{ run_id }}{% endif %}{% endif %}{% else %}never considered{% endif %} {% if let Some(reason) = article.reason %}{{ reason }}{% endif %} {{ article.utility }} {{ article.triage }} {{ article.quality }} {{ article.fit }} {% if let Some(rating) = article.rating %}{{ rating }}{% endif %} {% if let Some(date) = article.published %}{{ date }}{% endif %}
No articles match this filter.
{% include "dashboard/_pager.html" %}
{% endblock %}