regluit/frontend/templates/ml_status.html

14 lines
725 B
HTML
Raw Normal View History

2016-05-11 14:41:50 +00:00
{% if request.user.profile.on_ml %}
You are subscribed to the Unglue.it Newsletter. It comes roughly twice a month. <br />
2015-04-28 03:24:02 +00:00
<form id="ml_unsubscribe" action="{% url 'ml_unsubscribe' %}" method="POST">
{% csrf_token %}
<input type="submit" name="ml_unsubscribe" value="Unsubscribe" />
</form>
{% else %}
2017-11-18 21:34:56 +00:00
You are NOT subscribed to the Unglue.it Newsletter. It comes roughly twice a month. If you have just become an ungluer, your list invitation should be on its way. Put "unglueit@ebookfoundation.org" in your contact list to make sure you get it.<br />
2015-04-28 03:24:02 +00:00
<form id="ml_subscribe" action="{% url 'ml_subscribe' %}" method="POST">
{% csrf_token %}
<input type="submit" name="ml_subscribe" value="Subscribe" />
</form>
{% endif %}