diff --git a/plinth/modules/networks/templates/connections_delete.html b/plinth/modules/networks/templates/connections_delete.html index ef97b39f1..d9ea0c947 100644 --- a/plinth/modules/networks/templates/connections_delete.html +++ b/plinth/modules/networks/templates/connections_delete.html @@ -23,9 +23,13 @@ {% block content %} -

{% blocktrans %}Delete Connection {{ name }}{% endblocktrans %}

+

{% trans "Delete Connection" %}

-

{% trans "Delete connection permanently?" %}

+

+ {% blocktrans trimmed %} + Delete connection {{ name }} permanently? + {% endblocktrans %} +

{% csrf_token %} diff --git a/plinth/modules/users/templates/users_delete.html b/plinth/modules/users/templates/users_delete.html index f5990eb4f..6692e2057 100644 --- a/plinth/modules/users/templates/users_delete.html +++ b/plinth/modules/users/templates/users_delete.html @@ -23,13 +23,13 @@ {% block content %} -

- {% blocktrans trimmed with username=object.username %} - Delete User {{ username }} - {% endblocktrans %} -

+

{% trans "Delete User" %}

-

{% trans "Delete user permanently?" %}

+

+ {% blocktrans trimmed with username=object.username %} + Delete user {{ username }} permanently? + {% endblocktrans %} +

{% csrf_token %} diff --git a/plinth/modules/users/templates/users_update.html b/plinth/modules/users/templates/users_update.html index 9e9c64d49..6dc15717b 100644 --- a/plinth/modules/users/templates/users_update.html +++ b/plinth/modules/users/templates/users_update.html @@ -31,11 +31,7 @@ {% block content %} -

- {% blocktrans trimmed with username=object.username %} - Edit User {{ username }} - {% endblocktrans %} -

+

{{ object.username }}

{% url 'users:change_password' object.username as change_password_url %}