diff --git a/mod/contacts.php b/mod/contacts.php
index 8889e6513..35be8e79e 100644
--- a/mod/contacts.php
+++ b/mod/contacts.php
@@ -647,6 +647,7 @@ function contacts_content(App $a) {
'$blocked' => (($contact['blocked']) ? t('Currently blocked') : ''),
'$ignored' => (($contact['readonly']) ? t('Currently ignored') : ''),
'$archived' => (($contact['archive']) ? t('Currently archived') : ''),
+ '$pending' => (($contact['pending']) ? t('Awaiting connection acknowledge') : ''),
'$hidden' => array('hidden', t('Hide this contact from others'), ($contact['hidden'] == 1), t('Replies/likes to your public posts may still be visible')),
'$notify' => array('notify', t('Notification for new posts'), ($contact['notify_new_posts'] == 1), t('Send a notification of every new post of this contact')),
'$fetch_further_information' => $fetch_further_information,
diff --git a/view/templates/contact_edit.tpl b/view/templates/contact_edit.tpl
index 449316189..ab38a1c6c 100644
--- a/view/templates/contact_edit.tpl
+++ b/view/templates/contact_edit.tpl
@@ -39,7 +39,8 @@
{{if $lost_contact}}
{{$lost_contact}}
{{/if}}
{{if $insecure}}{{$insecure}}
{{/if}}
- {{if $blocked}}{{$blocked}}
{{/if}}
+ {{if $blocked && !$pending}}{{$blocked}}
{{/if}}
+ {{if $pending}}{{$pending}}
{{/if}}
{{if $ignored}}{{$ignored}}
{{/if}}
{{if $archived}}{{$archived}}
{{/if}}
diff --git a/view/theme/frio/templates/contact_edit.tpl b/view/theme/frio/templates/contact_edit.tpl
index 52f3fc545..8a202197b 100644
--- a/view/theme/frio/templates/contact_edit.tpl
+++ b/view/theme/frio/templates/contact_edit.tpl
@@ -52,7 +52,8 @@
{{if $lost_contact}}{{$lost_contact}}
{{/if}}
{{if $insecure}}{{$insecure}}
{{/if}}
- {{if $blocked}}{{$blocked}}
{{/if}}
+ {{if $blocked && !$pending}}{{$blocked}}
{{/if}}
+ {{if $pending}}{{$pending}}
{{/if}}
{{if $ignored}}{{$ignored}}
{{/if}}
{{if $archived}}{{$archived}}
{{/if}}
diff --git a/view/theme/vier/templates/contact_edit.tpl b/view/theme/vier/templates/contact_edit.tpl
index 9dc11a31c..945895ba6 100644
--- a/view/theme/vier/templates/contact_edit.tpl
+++ b/view/theme/vier/templates/contact_edit.tpl
@@ -40,7 +40,8 @@
{{if $lost_contact}}{{$lost_contact}}
{{/if}}
{{if $insecure}}{{$insecure}}
{{/if}}
- {{if $blocked}}{{$blocked}}
{{/if}}
+ {{if $blocked && !$pending}}{{$blocked}}
{{/if}}
+ {{if $pending}}{{$pending}}
{{/if}}
{{if $ignored}}{{$ignored}}
{{/if}}
{{if $archived}}{{$archived}}
{{/if}}