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

Manage Articles

{{ articles|length }} article{{ 's' if articles|length != 1 else '' }}
{% if articles %}
{% for article in articles %} {% endfor %}
Title Journal Authors Status Views Date Actions
{% if article.featured_image %} {{ article.title }} {% endif %}
{{ article.title|truncate(50) }} {% if article.is_featured %} Featured {% endif %} {% if article.is_open_access %} OA {% endif %}
{{ article.journal.abbreviation if article.journal else 'N/A' }} {{ article.authors|truncate(25) }} {{ article.status|title }} {{ article.views }} {{ article.published_date.strftime('%b %d, %Y') if article.published_date else article.created_at.strftime('%b %d, %Y') }}
{% if article.status == 'published' %} {% endif %}
{% else %}

No articles found

Create First Article
{% endif %}
{% endblock %}