diff --git a/src/page-circle-edit.pug b/src/page-circle-edit.pug
index 16d5fdfa215c13c556bfbfdda38deeb5023d413c..c9f976a925c4f75d6e75e4a2b02fb956addf7d41 100644
--- a/src/page-circle-edit.pug
+++ b/src/page-circle-edit.pug
@@ -30,12 +30,13 @@
   
   h3 List of members
 
+  div.table
+    div.cell.un Name
+    div.cell.deux Status
+    
   sib-display(
     bind-resources
-
     fields='team'
-
     multiple-team=''
-
     widget-team='circle-team-template'
   )
diff --git a/src/styles/abstracts/_variables.scss b/src/styles/abstracts/_variables.scss
index e63db81aec093d3d221b0a1f4e18d1dae4f1f552..53cbb4746288b5fd292fe0a14529255450affc16 100644
--- a/src/styles/abstracts/_variables.scss
+++ b/src/styles/abstracts/_variables.scss
@@ -10,6 +10,7 @@ $color-210-25-95: hsl(210, 25%, 95%);
 $color-222-57-95: hsl(222, 57%, 95%);
 $color-213-20-91: hsl(213, 20%, 91%);
 $color-221-51-90: hsl(221, 51%, 90%);
+$color-228-25-79: hsl(228, 25%, 79%);
 $color-0-0-85: hsl(0, 0%, 85%);
 $color-229-25-79: hsl(229, 25%, 79%);
 $color-215-9-73: hsl(215, 9%, 73%);
diff --git a/src/styles/layout/circle-profile/_index.scss b/src/styles/layout/circle-profile/_index.scss
index 293bc89d18edef441868c87a50263f92dec8d61b..6efac3d0d23ebbb29c4cdaefc79d23d111b04107 100644
--- a/src/styles/layout/circle-profile/_index.scss
+++ b/src/styles/layout/circle-profile/_index.scss
@@ -1 +1,2 @@
-@import 'circle-profile';
\ No newline at end of file
+@import 'circle-profile';
+@import 'circle-edit';
\ No newline at end of file
diff --git a/src/styles/layout/circle-profile/circle-edit.scss b/src/styles/layout/circle-profile/circle-edit.scss
new file mode 100644
index 0000000000000000000000000000000000000000..c6be16cbc4514b3b7f8404b340c220cbca5ba5a6
--- /dev/null
+++ b/src/styles/layout/circle-profile/circle-edit.scss
@@ -0,0 +1,79 @@
+/*.table {
+  display: table;
+  width: 100%;
+  
+  .row.header {
+    display: table-row;
+    
+    .cell {
+      display: table-cell;
+
+      &.un {
+        background: pink;
+      }
+
+      &.deux {
+        background: paleturquoise;
+      }
+    }
+  }
+}
+
+[widget='circle-team-template'] {
+
+  >div {
+    display: table;
+    width: 100%;
+
+    >circle-team-template {
+      display: table-row;
+
+      >* {
+        border-bottom: 1px solid $color-228-25-79;
+        border-left: 1px solid $color-228-25-79;
+      }
+
+      >sib-display {
+        display: table-cell;
+
+        div {
+          display: flex;
+          background: bisque;
+        }
+      }
+
+      sib-delete {
+        border-right: 1px solid $color-228-25-79;
+        display: table-cell;
+      }
+    }
+  }
+}*/
+
+.table {
+  display: flex;
+  justify-content: space-around;
+  background: pink;
+
+  >*{
+    flex: 1;
+    width: 50%;
+    padding: 1rem;
+    border-right: 1px solid $color-228-25-79;
+    border-bottom: 1px solid $color-228-25-79;
+  }
+}
+
+circle-team-template {
+  display: flex;
+  justify-content: space-between;
+  background: paleturquoise;
+
+  >* {
+    flex: 1;
+    width: 50%;
+    padding: 1rem;
+    border-right: 1px solid $color-228-25-79;
+    border-bottom: 1px solid $color-228-25-79;
+  }
+}
\ No newline at end of file