{% extends 'base.html' %} {% load static %} {% block title %} Parcel Types {% endblock %} {% block css %} {% endblock %} {% block content %}
{% include 'admin_header.html' %}
{% include 'admin_sidebar.html' %}
{% csrf_token %} {% if all_parceltypes %} {% for parceltype in all_parceltypes %} {% endfor %} {% endif %}
Serial No. Name Created At Action
{{parceltype.serialno}} {{parceltype.parceltype}} {{parceltype.created_at}}
{% if all_parceltypes.has_other_pages %}
    {% if all_parceltypes.has_previous %}
  • «
  • {% else %}
  • «
  • {% endif %} {% for i in all_parceltypes.paginator.page_range %} {% if all_parceltypes.number == i %}
  • {{ i }} (current)
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if all_parceltypes.has_next %}
  • »
  • {% else %}
  • »
  • {% endif %}
{% endif %}
{% include 'admin_footer.html' %}
{% csrf_token %} {% endblock %} {% block js %} {% endblock %}