{% extends 'base.html' %} {% load static %} {% block title %} Assigned Tasks {% endblock %} {% block css %} {% endblock %} {% block content %}
{% include 'admin_header.html' %}
{% include 'admin_sidebar.html' %}
{% csrf_token %} {% if allassignedtaks %} {% for task in allassignedtaks %} {% endfor %} {% else %} {% endif %}
Serial No. Task Description Created At
{{task.serialno}} {{task.description}} {{task.created_at}}
No record exists
{% if allassignedtaks.has_other_pages %}
    {% if allassignedtaks.has_previous %}
  • «
  • {% else %}
  • «
  • {% endif %} {% for i in allassignedtaks.paginator.page_range %} {% if allassignedtaks.number == i %}
  • {{ i }} (current)
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if allassignedtaks.has_next %}
  • »
  • {% else %}
  • »
  • {% endif %}
{% endif %}
{% include 'admin_footer.html' %}
{% endblock %} {% block js %} {% endblock %}