diff --git a/src/styles/layout/project-profile/project-profile.scss b/src/styles/layout/project-profile/project-profile.scss
index b2c594e285aa7fb419b5138bcef3120c3394cd41..8df42714e4654dec59c70f5836f7a29d8250d978 100644
--- a/src/styles/layout/project-profile/project-profile.scss
+++ b/src/styles/layout/project-profile/project-profile.scss
@@ -56,6 +56,7 @@
     grid-template-columns: 7vh auto;
     grid-template-rows: repeat(2, 5.2vh);
 
+    >[name='user.account.picture'],
     >[name='account.picture'] {
       align-items: center;
       align-self: center;
@@ -150,7 +151,7 @@
     li {
       margin-bottom: 0.5em;
 
-      &::before {
+      span::before {
         color: $color-43-100-50;
         font-size: 2.2rem;
         margin: 0 1rem 0 0;
diff --git a/src/templates/hd-customer.pug b/src/templates/hd-customer.pug
index df6beba2e87f7f786c778233eed5875db33d9f68..51563c2f1e36ae5dbcc4c4c473ebd393992cbcaf 100644
--- a/src/templates/hd-customer.pug
+++ b/src/templates/hd-customer.pug
@@ -5,15 +5,13 @@ sib-widget(name='hd-customer')
         h3 Client:
         ul
           li #[span Business name: ]${await value.name}
-          li #[span Company register: ]${await value.companyRegister}
-          li
-            span Address:
-            br
-            p ${await value.address}
+          li ${await value.companyRegister ? `<span>Company register: </span> ${await value.companyRegister}` : ``}
+          li ${await value.address ? `<span>Address: </span><br/><p>${await value.address}</p>`: ``}
       div
         h3 Contact:
         ul
-          li(class='mdi-account-outline') #[span ${await value.firstName} ${await value.lastName}], ${await value.role}
-          li(class='mdi-email-outline')
-            a(href='mailto:${await value.email}') ${await value.email}
-          li(class='mdi-cellphone-iphone') ${await value.phone}
+          li #[span(class='mdi-account-outline') ${await value.firstName} ${await value.lastName ? await value.lastName : ""}]${await value.role ? `, ${await value.role}` : ""}
+          li
+            span(class='mdi-email-outline')
+              a(href='mailto:${await value.email}') ${await value.email}
+          span ${await value.phone ? `<li><span class='mdi-cellphone-iphone'>${await value.phone}</span></li>` : ``}
diff --git a/src/templates/hd-project-team.pug b/src/templates/hd-project-team.pug
index 639e2ff7476255e33d0d34f6f7be971a68dc6147..c08740ad18f7d5dde40b1ad70524d4935235a223 100644
--- a/src/templates/hd-project-team.pug
+++ b/src/templates/hd-project-team.pug
@@ -4,17 +4,22 @@ sib-widget(name='hd-project-team')
   template
     sib-display(
       data-src='${await value}'
-      fields='account.picture, sup(user.name, user.groups), sub(user.profile.city, name)'
+      fields='user.account.picture, sup(user.name, is_admin, user.groups), sub(user.profile.city, name)'
 
       class-user.name='user-name'
+      class-is_admin='tag-admin'
       class-user.groups='tag-group'
       class-user.profile.city='city'
 
-      widget-account.picture='hd-user-avatar'
+      widget-user.account.picture='hd-user-avatar'
+      widget-is_admin='hd-user-admin'
       widget-user.groups='hd-user-groups'
 
       multiple-user.groups=''
     )
 
+sib-widget(name='hd-user-admin')
+  template ${await value ? "Administrator" : ""}
+
 sib-widget(name='hd-user-groups')
   template ${await value.name}
diff --git a/src/templates/template-team.pug b/src/templates/template-team.pug
deleted file mode 100644
index 2ffd17ff8251cc8e8332f110d89add7789a8cd8c..0000000000000000000000000000000000000000
--- a/src/templates/template-team.pug
+++ /dev/null
@@ -1,25 +0,0 @@
-include hd-user-avatar.pug
-
-sib-widget(name='project-team-template')
-  template
-    sib-display(
-      data-src='${await value}'
-      fields='account.picture, sup(user.name, is_admin, user.groups), sub(user.profile.city)'
-
-      class-user.name='user-name'
-      class-is_admin='tag-admin'
-      class-user.groups='tag-group'
-      class-user.profile.city='city'
-
-      widget-account.picture='hd-user-avatar'
-      widget-is_admin='hd-user-admin'
-      widget-user.groups='hd-user-groups'
-
-      multiple-user.groups=''
-    )
-
-sib-widget(name='hd-user-admin')
-  template ${await value ? "Administrator" : ""}
-
-sib-widget(name='hd-user-groups')
-  template ${await value.name}