Add face list display

Change-Id: Ide96107acc8ad59cefb0a619968d5c27cd9e94bb
diff --git a/src/status.qml b/src/status.qml
index c288056..c4bb56c 100644
--- a/src/status.qml
+++ b/src/status.qml
@@ -39,6 +39,87 @@
             }
         }
         Tab {
+            title: "Face"
+            TableView {
+                anchors.fill: parent
+                anchors.topMargin: 20
+                anchors.bottomMargin: 20
+                anchors.leftMargin: 20
+                anchors.rightMargin: 20
+                model: faceModel
+                TableViewColumn{
+                    role: "faceId"
+                    title: "Face ID"
+                    width: 60
+                }
+                TableViewColumn{
+                    role: "remote"
+                    title: "Remote URI"
+                    width: 150
+                }
+                TableViewColumn{
+                    role: "local"
+                    title: "Local URI"
+                    width: 150
+                }
+                TableViewColumn{
+                    role: "scope"
+                    title: "Scope"
+                    width: 70
+                }
+                TableViewColumn{
+                    role: "persistency"
+                    title: "Persistency"
+                    width: 100
+                }
+                TableViewColumn{
+                    role: "linkType"
+                    title: "LinkType"
+                    width: 100
+                }
+                TableViewColumn{
+                    role: "inInterest"
+                    title: "In Interests"
+                    width: 100
+                }
+                TableViewColumn{
+                    role: "outInterest"
+                    title: "Out Interests"
+                    width: 100
+                }
+                TableViewColumn{
+                    role: "inData"
+                    title: "In Data"
+                    width: 100
+                }
+                TableViewColumn{
+                    role: "outData"
+                    title: "Out Data"
+                    width: 100
+                }
+                TableViewColumn{
+                    role: "inByte"
+                    title: "In Bytes"
+                    width: 100
+                }
+                TableViewColumn{
+                    role: "outByte"
+                    title: "Out Bytes"
+                    width: 100
+                }
+                TableViewColumn{
+                    role: "inNack"
+                    title: "In Nacks"
+                    width: 100
+                }
+                TableViewColumn{
+                    role: "outNack"
+                    title: "Out Nacks"
+                    width: 100
+                }
+            }
+        }
+        Tab {
             title: "FIB"
             TableView {
                 anchors.fill: parent