{% extends 'admin_layout_two.html' %} {% load static %} {% block content %} Beni | Store Requests

Store Requests

{% if store_obj %} {% for i in store_obj %} {% endfor %}
ID User Details Requested Date Status Actions
{{ i.id }} {{ i.email }} {{ i.start_date|date:"d M Y" }} {% if i.status == 2 %} Disapprove {% elif i.status == 1 %} Approved {% else %} Pending {% endif %} {% if i.status == 0 %} {% endif %}
{% else %}

No data found

{% endif %}
{% if store_obj %}
{% endif %}
{% endblock %}