mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2026-08-04 10:23:03 -05:00
Ensure that username should be visible in the 'Connect to Server' popup when service and user name both specified. Fixes #5871
This commit is contained in:
committed by
Akshay Joshi
parent
e230787f21
commit
ab642344d4
@@ -1,11 +1,11 @@
|
||||
<form name="frmPassword" id="frmPassword" style="height: 100%; width: 100%" onsubmit="return false;">
|
||||
<div>
|
||||
<div><span class="font-weight-bold" >
|
||||
{% if service %}
|
||||
{{ _('Please enter the password for the user to connect the server - "{0}"').format(server_label) }}
|
||||
{% else %}
|
||||
{% if username %}
|
||||
{{ _('Please enter the password for the user \'{0}\' to connect the server - "{1}"').format(username,
|
||||
server_label) }}
|
||||
{% else %}
|
||||
{{ _('Please enter the password for the user to connect the server - "{0}"').format(server_label) }}
|
||||
{% endif %}
|
||||
</span></div>
|
||||
<div class="input-group row py-2">
|
||||
|
||||
Reference in New Issue
Block a user