emeritus.html 1.63 KB
Newer Older
1
{% extends "process/nm2-base.html" %}
2
{% load i18n %}
3
4
5

{% block content %}

6
{% if expired %}
7
<h1>{% trans "Link expired" %}</h1>
8
9
10
11

<p>The process has progressed in a way that made this link obsolete. Please
contact <a href="mailto:wat@debian.org">wat@debian.org</a>.</p>
{% else %}
12
<h1>{% trans "Retiring from Debian" %}</h1>
13

14
15
16
<p>{% blocktrans %}You can use this page to
<a href="https://www.debian.org/doc/manuals/developers-reference/developer-duties.html#s3.7">
retire from Debian</a>.{% endblocktrans %}
Enrico Zini's avatar
Enrico Zini committed
17

18
19
20
21
<p>{% blocktrans %}Use the form below to enter a goodbye message that will be
sent to <a href="https://lists.debian.org/debian-private/">the debian-private
mailing list</a>. A default text is provided for your convenience, feel free to
change it as you wish.{% endblocktrans %}
Enrico Zini's avatar
Enrico Zini committed
22

23
<p>
24
{% url 'person:edit_email' key=person.lookup_key as person_edit_email %}
25
{% blocktrans with person_fullname=person.fullname person_email=person.email %}The
Romain Porte's avatar
Romain Porte committed
26
email will be sent as <code>{{person_fullname}} &lt;{{person_email}}&gt;</code>.
27
28
29
You can change the address <a href="{{person_edit_email}}">here</a>
(requires <a href="https://wiki.debian.org/DebianSingleSignOn#Documentation_for_Users">
Debian Single SignOn</a> access).{% endblocktrans %}</p>
Enrico Zini's avatar
Enrico Zini committed
30

31
<form action="{{request.build_absolute_uri}}" method="POST">{% csrf_token %}
32
{{form.non_field_errors}}
33
34
35
36
37
38
39
40
41
{% if form.silent %}
  <p>
  {{form.silent.errors}}
  </p>
  <p>
  {{form.silent.label_tag}}
  {{form.silent}}
  </p>
{% endif %}
42
43
  <p>
  {{form.statement.errors}}
44
45
  </p>
  <p>
46
47
  {{form.statement}}
  </p>
48
  <button class="btn btn-primary" type="submit">{% trans "Submit" %}</button>
49
</form>
50
{% endif %}
51
52
53

{% endblock %}