{% extends "mail/base.html" %} {% load i18n %}{% load translations %} {% block content %}

{% trans "Hi,"%}

{% if project %} {% blocktrans %}New whiteboard message has been added to {{ project }} at {{ site_title }}.{% endblocktrans %} {% else %} {% blocktrans %}New whiteboard message has been added at {{ site_title }}.{% endblocktrans %} {% endif %}

{% if whiteboard.component %} {% elif whiteboard.project %} {% elif whiteboard.language %} {% endif %}
{% trans "Message:" %} {{ whiteboard.render }}
{% trans "Translation component:" %} {{ whiteboard.component }}{% trans "Translation project:" %} {{ whiteboard.project }}{% trans "Translation language:" %} {{ whiteboard.language }}
{% endblock %}