{% extends "categories/home.html" %} {% load static pagination i18n %} {% block content %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %}

{% trans "My Subjects" %} ({{ total_subs }})

{% if subjects|length > 0 %}
{% for subject in subjects %} {% include "subjects/subject_card.html" with accordion_id="subject-accordion" %} {% endfor %} {% pagination request paginator page_obj %}
{% else %}

{% trans 'You still do not posses any subject in our platform' %}

{% endif %}
{% if user.is_staff %} {% endif %} {% endblock content %}