{% extends "fakenews/cms-base.html" %} {% load tz %} {% load getkey %} {% block content %}

Articles

New
{% for check in object_list %}

{{ check.headline }}

{{ check.deck }}

By {{ check.author.first_name }} {{ check.author.last_name }}

{{ check.claim_reviewed.disinformation_type }}

{{ statusTypes | getkey:check.status}}

{% timezone "America/New_York" %} Last Updated {{ check.date_modified }} {% ifequal check.status "pub" %} | Published {{ check.publish_date }} {% endifequal %} {% endtimezone %}

{% empty %}

Sorry. No articles match all of your filters.

{% endfor %}

Filters

Status
{% for status in statuses %}
{% endfor %}
Types
{% for type in types %}
{% endfor %}
Authors
{% for author in authors %}
{% endfor %}
{% if pages|length > 1 %} {% endif %}
{% endblock %} {% block scripts %} {{ block.super }} {% endblock %}