{% extends "admin/core/base.html" %} {% load foundation %} {% load static %} {% block title %}Featured Articles Manager{% endblock title %} {% block admin-header %}Featured Articles Manager{% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Manager
  • Journal Home Settings
  • Featured Articles Manager
  • {% endblock %} {% block body %}
    {% csrf_token %}

    Active Featured Articles

      {% for fa in featured_articles %}
    • {{ fa.article.safe_title }}
      Added on {{ fa.added }} by {{ fa.added_by.full_name }}
    • {% endfor %}

    Add New Featured Article

    {% for article in articles %} {% endfor %}
    {% endblock body %} {% block js %} {% include "elements/datatables.html" with target="#featured" %} {% endblock js %}