{% extends 'base.html' %} {% load static %} {% block title %} All Time Slots {% endblock %} {% block css %} {% endblock %} {% block content %}
{% include 'admin_header.html' %}
{% include 'admin_sidebar.html' %}
{% csrf_token %} {% if alltimeslots %} {% for slot in alltimeslots %} {% endfor %} {% endif %}
Serial No. Opening Time Closing Time Status Action
{{slot.serialno}} {{slot.openinghour}} {{slot.closinghour}} {% if slot.status %}Enabled{% else %}Disabled{% endif %} {% if slot.status %} {% else %} {% endif %}
{% if alltimeslots.has_other_pages %}
    {% if alltimeslots.has_previous %}
  • «
  • {% else %}
  • «
  • {% endif %} {% for i in alltimeslots.paginator.page_range %} {% if alltimeslots.number == i %}
  • {{ i }} (current)
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if alltimeslots.has_next %}
  • »
  • {% else %}
  • »
  • {% endif %}
{% endif %}
{% include 'admin_footer.html' %}
{% endblock %} {% block js %} {% endblock %}