summaryrefslogtreecommitdiffstats
path: root/templates/user_email_subscriptions.html
blob: 10440529086dc97625f8d50f4e706a99c0e2b486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% extends "user.html" %}
<!-- user_email_subscriptions.html -->
{% load i18n %}
{% load extra_tags %}
{% load humanize %}

{% block usercontent %}
    <h2>{% trans "Email subscription settings" %}</h2>
    <p class="message">{% trans "email subscription settings info" %}</p>
    <div class='inline-block'>
    {% if action_status %}
    <p class="action-status"><span>{{action_status}}</span></p>
    {% endif %}
    <form method="POST"> 
        {% include "edit_user_email_feeds_form.html" %}
<<<<<<< HEAD:templates/user_email_subscriptions.html
=======
        <table class='form-as-table'>
        {{tag_filter_selection_form}}
        </table>
>>>>>>> 82d35490db90878f013523c4d1a5ec3af2df8b23:templates/user_email_subscriptions.html
        <div class="submit-row text-align-right">
            <input type="submit" class="submit" name="save" value="{% trans "Update" %}"/>
            <input type="submit" class="submit" name="stop_email" value="{% trans "Stop sending email" %}"/>
        </div>
    </form>
    </div>
{% endblock %}
<!-- end user_email_subscriptions.html -->