Files @ 48c28651b85c
Branch filter:

Location: symposion_app/pinaxcon/templates/symposion/emails/proposal_new_message/message.html

Sachi King
Remove boxes

Boxes takes content directly from the DB and drops it into the django
templates. This is rather ugly and goes against keeping as much as we
can in static locations. As such, this is being dropped.
{% load account_tags %}
{% load i18n %}
{% user_display message.user as user %}
<p>
  {% blocktrans with title=proposal.title %}<b>{{ user }}</b> has added a message on <b>{{ title }}</b>.{% endblocktrans %}
</p>
<blockquote>
    {{ message.message|safe }}
</blockquote>
<p>
    {% if reviewer %}{% url 'review_detail' proposal.pk as detail_url %}{% else %}{% url 'proposal_detail' proposal.pk as detail_url %}{% endif %}
    {% blocktrans %} Respond online at <a href="http://{{ current_site }}{{ detail_url }}#proposal-feedback">http://{{ current_site }}{{ detail_url }}#proposal-feedback</a>{% endblocktrans %}
</p>