{% extends "base.html" %} {% block title %}Transactions Pending Approval - Project Ploughshares{% endblock %} {% block styles %} {% endblock %} {% block content %}

Transactions Pending Approval

Back to All Transactions (B)

0 items selected

reject records? this will delete them from the database permanently.

{% if transactions %}
{% for transaction in transactions %} {% endfor %}
Transaction No. Type Division Amount Source Date Recipient Created At Documents Actions Select
{{ transaction['id'] }} {{ transaction['transaction_type'] }} {{ transaction['company_division'] }} {{ transaction['amount']|currency }} {{ transaction['source_date'].strftime('%Y-%m-%d') if transaction['source_date'] else 'N/A' }} {{ transaction['recipient'] }} {{ transaction['created_at'].strftime('%Y-%m-%d %H:%M') if transaction['created_at'] else 'N/A' }} {% if transaction['document_count'] > 0 %} {{ transaction['document_count'] }} {% else %} 0 {% endif %}
{% else %}

No transactions pending approval.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}