{% extends "messages/email/base.html" %}
{% load i18n %}
{% block salutation %}
{% if request.user != source.user %}
{% blocktrans with name=source.user.get_full_name|default:"vendor" %}Dear {{ name }},{% endblocktrans %}
{% endif %}
{% endblock %}
{% block content %}
{% trans "A new contract has been added to your Project" %}:
{% trans "Title" %}: {{ source.title }}
{% trans "Link" %}: {{ request.scheme }}://{{ request.get_host }}{{ source.get_absolute_url }}
{% if contract.is_signed %}
{% trans "This contract has already been signed and there is no action for you to take." %}
{% else %}
{% blocktrans %}Please review the contract and sign it before reuploading it to your Project page for the {{ ORG_SHORT_NAME }} Team to approve.{% endblocktrans %}
{% endif %}
{% endblock %}
{% block more_info %}
{% if request.user != source.user %}
{% trans "Link to your application" %}: {{ request.scheme }}://{{ request.get_host }}{{ source.get_absolute_url }}
{% trans "If you have any questions, please submit them here" %}: {{ request.scheme }}://{{ request.get_host }}{{ source.get_absolute_url }}#communications
{% trans "See our guide for more information" %}: {{ ORG_GUIDE_URL }}
{% blocktrans %}If you have any issues accessing the submission system or other general inquiries, please email us at {{ ORG_EMAIL }}{% endblocktrans %}
{% endif %}
{% endblock %}