{% load base_filters %}

{% blocktrans %}A donation has been made for {{ SITE_GLOBAL_SITEDISPLAYNAME }} {% endblocktrans %}

{% if donation.donate_to_entity %} {% endif %} {% if donation.allocation %} {% endif %}
  {% trans "Name:" %} {{ donation.first_name }} {{ donation.last_name }}
  {% trans "Company:" %} {{ donation.company }}
{% trans "Donation Amount:" %} {{ donation.donation_amount|format_currency }}
{% trans "Allocate Donation to:" %} {{ donation.donate_to_entity }}
{% trans "Allocate Donation to:" %} {{ donation.allocation }}
{% trans "Payment Method:" %} {{ donation.payment_method }}
{% trans "Referred By:" %} {{ donation.referral_source }}
{% trans "Comments:" %} {{donation.comments }}
{#to view donation details #}

{% trans "To view the donation details, go to:" %} {{ SITE_GLOBAL_SITEURL }}{% url "donation.view" donation.id %}

{% if donation.user %}

{% trans "To view the user details, go to:" %} {{ SITE_GLOBAL_SITEURL }}{% url 'profile' donation.user.username %}

{% endif %} {# time stamp #}

{% trans "Time submitted:" %} {% now "D d M Y P" %}