{% extends "assetcloud/emails/base.html" %} {% block subject %}Asset{{ asset_count|pluralize }} have been shared with you{% endblock %} {% block html_content %}

The following {{ asset_count|pluralize:"asset has,assets have" }} been shared with you.

{% if expiry %}

This link will expire on {{ expiry }}.

{% endif %} {% for asset in assets %}

{{ asset.filename }}

{% endfor %}

Please visit {{ link }} to download {{ asset_count|pluralize:"it,them" }}.

{{ message|linebreaks }}

{% endblock %} {% block plain_content %} {% autoescape off %} The following {{ asset_count|pluralize:"asset has,assets have" }} been shared with you. {% if expiry %} This link will expire on {{ expiry }}. {% endif %} {% for asset in assets %} {{ asset.filename }} {% endfor %} Please visit {{ link }} to download {{ asset_count|pluralize:"it,them" }}. {{ message }} {% endautoescape %} {% endblock %}