2017-01-10 17:30:27 +00:00
|
|
|
{% extends "core/base.jinja" %}
|
|
|
|
{% from 'core/macros.jinja' import user_profile_link %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ weekmail.title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2017-01-11 11:18:42 +00:00
|
|
|
<a href="{{ url('com:weekmail') }}">{% trans %}Back{% endtrans %}</a>
|
|
|
|
{% if request.GET['send'] %}
|
|
|
|
<p>{% trans %}Are you sure you want to send this weekmail?{% endtrans %}</p>
|
|
|
|
{% if request.LANGUAGE_CODE != settings.LANGUAGE_CODE[:2] %}
|
|
|
|
<p><strong>{% trans %}Warning: you are sending the weekmail in another language than the default one!{% endtrans %}</strong></p>
|
|
|
|
{% endif %}
|
|
|
|
<form method="post" action="">
|
|
|
|
{% csrf_token %}
|
|
|
|
<button type="submit" name="send" value="validate">{% trans %}Send{% endtrans %}</button>
|
|
|
|
</form>
|
|
|
|
{% endif %}
|
|
|
|
<hr>
|
2017-01-10 17:30:27 +00:00
|
|
|
{{ weekmail_rendered|safe }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
|