{% extends 'base.html' %}{% load static %} {% block title %}Review {{ merchant.business_name }} — Admin{% endblock %} {% block content %}
All Applications

{{ merchant.business_name }}

{% if merchant.is_approved %}Approved{% else %}Pending Review{% endif %}
Business Info
Owner: {{ merchant.user.username }}
Type: {{ merchant.get_merchant_type_display }}
Country: {{ merchant.country }}
Phone: {{ merchant.business_phone|default:"N/A" }}
Applied: {{ merchant.created_at|date:"M d, Y" }}
Business Address
{{ merchant.business_address }}
{% if merchant.description %}
Description
{{ merchant.description }}
{% endif %}
{% if merchant.id_document or merchant.business_photo or merchant.cac_document %}
Submitted Documents
{% if merchant.id_document %}
Valid ID
{% endif %} {% if merchant.business_photo %}
Business Photo
{% endif %} {% if merchant.cac_document %}
CAC Certificate
View Document
{% endif %}
{% endif %}
Back {% if not merchant.is_approved %}
{% csrf_token %}
{% csrf_token %}
{% else %} Already Approved {% endif %}
{% endblock %}