~abompard/postorius/include-sdist

« back to all changes in this revision

Viewing changes to src/postorius/templates/postorius/lists/confirm_remove_role.html

  • Committer: Florian Fuchs
  • Date: 2015-01-19 15:03:09 UTC
  • mfrom: (188.4.2 postorius)
  • Revision ID: flo.fuchs@gmail.com-20150119150309-lcdx9ztq29ejj0ze
* URLs now contains the list-id instead of the fqdn_listname. Contributed by Abhilash Raj (LP: 1201150).
* Added dev_requirements.txt for installation of development dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
{% block main %}
7
7
    <h1>{% trans 'Confirm Remove Role' %}</h1>
8
8
    <p>{% trans "Are you sure you want to remove?" %}</p>
9
 
    <form method="post" action="{% url 'remove_role' fqdn_listname role address %}">
 
9
    <form method="post" action="{% url 'remove_role' list_id role address %}">
10
10
      {% csrf_token %}
11
11
        <button class="btn btn-danger" type="submit">{% trans "Remove " %}{{ address }}</button>
12
 
        <a class="btn" href="{% url 'list_members' fqdn_listname %}">{% trans "Cancel" %}</a>
 
12
        <a class="btn" href="{% url 'list_members' list_id %}">{% trans "Cancel" %}</a>
13
13
    </form>
14
14
{% endblock main %}