{% extends 'base.html' %} {% block title %}Manage Articles | Admin | {{ settings.site_name }}{% endblock %} {% block content %}

Manage Articles

Add Article
{% if articles.items %}
{% for article in articles.items %} {% endfor %}
Title Journal Status Views Date Actions
{{ article.title|truncate(60) }} {% if article.is_open_access %} OA {% endif %}
{{ article.authors|truncate(50) }}
{% if article.journal %} {{ article.journal.name|truncate(20) }} {% else %} {% endif %} {% if article.is_published %} Published {% else %} Draft {% endif %} {{ article.views }} {{ article.published_date.strftime('%b %d, %Y') if article.published_date else article.created_at.strftime('%b %d, %Y') }}
{% if article.is_published %} {% else %} {% endif %}
{% if articles.pages > 1 %} {% endif %} {% else %}

No Articles Found

{% if request.args %} No articles match your filters. Try adjusting your search. {% else %} Start by creating your first article. {% endif %}

Add Article
{% endif %}
{% endblock %}