mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
Update strings during edit/delete operations
This commit is contained in:
parent
161e374419
commit
201837518f
@ -23,9 +23,13 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<h3>{% blocktrans %}Delete Connection <em>{{ name }}</em>{% endblocktrans %}</h3>
|
<h3>{% trans "Delete Connection" %}</h3>
|
||||||
|
|
||||||
<p>{% trans "Delete connection permanently?" %}</p>
|
<p>
|
||||||
|
{% blocktrans trimmed %}
|
||||||
|
Delete connection <strong>{{ name }}</strong> permanently?
|
||||||
|
{% endblocktrans %}
|
||||||
|
</p>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|||||||
@ -23,13 +23,13 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<h3>
|
<h3>{% trans "Delete User" %}</h3>
|
||||||
{% blocktrans trimmed with username=object.username %}
|
|
||||||
Delete User <em>{{ username }}</em>
|
|
||||||
{% endblocktrans %}
|
|
||||||
</h3>
|
|
||||||
|
|
||||||
<p>{% trans "Delete user permanently?" %}</p>
|
<p>
|
||||||
|
{% blocktrans trimmed with username=object.username %}
|
||||||
|
Delete user <strong>{{ username }}</strong> permanently?
|
||||||
|
{% endblocktrans %}
|
||||||
|
</p>
|
||||||
|
|
||||||
<form class="form" method="post">
|
<form class="form" method="post">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|||||||
@ -31,11 +31,7 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<h3>
|
<h3>{{ object.username }}</h3>
|
||||||
{% blocktrans trimmed with username=object.username %}
|
|
||||||
Edit User <em>{{ username }}</em>
|
|
||||||
{% endblocktrans %}
|
|
||||||
</h3>
|
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
{% url 'users:change_password' object.username as change_password_url %}
|
{% url 'users:change_password' object.username as change_password_url %}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user