{% extends "fakenews/cms-base.html" %} {% load tz %} {% load dumpjson %} {% 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 }}

{% if check.is_published %} Published {% else %} Draft {% endif %}

{% timezone "America/New_York" %} Last Updated {{ check.date_modified }} {% if check.is_published %} | Published {{ check.publish_date }} {% endif %} {% 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 %}