{% include "header.html" %}

App Notifications

Filters

{% for notification in all_notification %} {% endfor %}
Sr.No. Title Message Exams Courses Batches Created On
{{ forloop.counter }} {{notification.title}} {{ notification.message }} {% with notification.appnotifications_batches_set.all as exams_data %} {% for item in exams_data %} {% if item.exams %} {{ item.exams.exam_category_name }} {% endif %} {% endfor %} {% endwith %} {% with notification.appnotifications_batches_set.all as courses_data %} {% for item in courses_data %} {% if item.courses %} {{ item.courses.course_name }} {% endif %} {% endfor %} {% endwith %} {% with notification.appnotifications_batches_set.all as batches_data %} {% for item in batches_data %} {% if item.batches %} {{ item.batches.batch_name }} {% endif %} {% endfor %} {% endwith %} {{ notification.created_at }}
{% include "sidebar.html"%}
{% include "footer.html" %}