]> git.ipfire.org Git - people/jschlag/pbs.git/blame - src/templates/user-delete.html
Use autotools
[people/jschlag/pbs.git] / src / templates / user-delete.html
CommitLineData
9137135a
MT
1{% extends "base.html" %}
2
3{% block body %}
4 <h1>{{ _("Delete user %s") % user.realname }}</h1>
5
6 <p>
7 {% if current_user == user %}
8 {{ _("Do you really want to delete your own account?") }}
9 {{ _("You won't be able to login and use this service any more.") }}
10 {% else %}
11 {{ _("Do you really want to delete the user %s?") % user.realname }}
12 {% end %}
13 </p>
14
15 <p class="buttons">
16 <a href="/user/delete/{{ user.name }}?confirmed=1">{{ _("Delete %s") % user.realname }}</a>
17 |
18 <a href="/user/{{ user.name }}">{{ _("Back") }}</a>
19 </p>
20{% end block %}