{% extends "messages/email/applicant_base.html" %}
{% load i18n %}
{% 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 %}