{% extends 'admin/layout/admin_app.html' %} {% block content %} {% if messages %} {% endif %}

Content Management

{% for content in contents %} {% endfor %}
Title Created At Updated At Status Action
{{ content.title }} {{ content.created_at }} {% if content.updated_at %} {{ content.updated_at }} {% else %} {{ '-' }} {% endif %} {% if content.status %} Active {% else %} Inactive {% endif %} {% if 2 in actions %} {% endif %} {% if 4 in actions %} {% endif %}
{% if contents.has_other_pages %}
    {% if contents.has_previous %} {% else %} {% endif %} {% for i in contents.paginator.page_range %} {% if contents.number == i %}
  • {{ i }}
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if contents.has_next %} {% else %} {% endif %}
{% endif %}
{% endblock %} {% block custom_js %} {% endblock %}