{% extends "admin/admin_base.html" %} {% block title %}Dashboard{% endblock title %} {% block content %}

Articles

{% for article in articles %} {% endfor %}
ID Status Title View Published Time Tags
{{ article.id }} {% if article.published == false %} Draw {% else %} Publised {% endif %} {{ article.title }} {% if article.published %} {% endif %} {% if article.url %}
{{ article.url }} {% endif %}
{{ article.view }} {{ article.publish_at | date(format="%B %d, %Y") }}
{% for key in article.keywords %} {{ key }} {% endfor %}
{% endblock content %}