Payments

{% if pending_projects %}
Service purchased successfully! Please submit payment below to activate your project.
{% endif %} {% if not pending_projects and payments %}
Payment submitted successfully! Your payment is awaiting approval from our team.
{% endif %} {% if pending_projects %}

Pending Payments ({{ pending_projects.count }})

{% for project in pending_projects %}

{{ project.title }}

${{ project.budget }}
Created: {{ project.created_at|date:"M d, Y" }}
{{ project.description|truncatewords:20 }}
{% endfor %}
{% endif %}

Payment History ({{ payments.count }})

{% if payments %} {% for payment in payments %} {% endfor %}
Project Amount Method Date Status Actions
{{ payment.project.title }} ${{ payment.amount }} {{ payment.get_payment_method_display|default:"Pending" }} {{ payment.payment_date|date:"M d, Y"|default:"Not submitted" }} {{ payment.get_status_display }} {% if payment.status == 'approved' and payment.invoice_number %} View Invoice {% else %} - {% endif %}
{% else %}

No Payment History

Your payment history will appear here.

{% endif %}