~abompard/postorius/include-sdist

« back to all changes in this revision

Viewing changes to src/postorius/templates/postorius/lists/confirm_delete.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:
10
10
    <p>{% trans "All settings and membership data will be lost!" %}</p>
11
11
    <form action="{{submit_url}}" method="post"> {% csrf_token %}
12
12
        <button class="btn btn-danger" type="submit">{% trans "Delete" %} {{ list.fqdn_listname }}</button>
13
 
        <a class="btn" href="{% url 'list_summary' fqdn_listname=list.fqdn_listname %}">{% trans "Cancel" %}</a>
 
13
        <a class="btn" href="{% url 'list_summary' list_id=list.list_id %}">{% trans "Cancel" %}</a>
14
14
    </form>
15
15
{% endblock main %}