{% extends 'base.html' %} {% load static %} {% block content %}
{% include 'admin_workspace/_admin_sidebar.html' %}
Back to Dashboard

Verification Workspace

Reviewing application for {{ target_user.first_name }} {{ target_user.last_name }}

{% if target_user.review.is_approved %}
ID: {{ target_user.review.registration_id }} Download Digital Pass
{% else %}
{% csrf_token %}
{% endif %}
Profile Details

Name
{{ target_user.first_name }} {{ target_user.last_name }}

Email
{{ target_user.email }}

Phone
{{ target_user.mobile_number }}

Type
{{ target_user.get_registration_type_display }}

University
{{ target_user.profile.university|default:"-" }}

Participation & Abstract

Type
{{ target_user.participation.get_presentation_type_display|default:"-" }}

Theme
{{ target_user.participation.theme|default:"-" }}

Title
{{ target_user.participation.abstract_title|default:"-" }}

{% if target_user.abstract.file %} View Abstract Document {% else %}

No abstract uploaded.

{% endif %}
Payment Details

Status
{{ target_user.payment.get_status_display|default:"Pending Verification" }}

Transaction
{{ target_user.payment.transaction_number|default:"-" }}

Date
{{ target_user.payment.payment_date|default:"-" }}

{% if target_user.payment.screenshot %} View Payment Proof {% else %}

No payment proof uploaded.

{% endif %}
{% endblock %}