Added IMSI and Profiles list pages
diff --git a/mCordPortal/src/app/view/profiles-list/profiles-list.js b/mCordPortal/src/app/view/profiles-list/profiles-list.js
new file mode 100644
index 0000000..5cfdb56
--- /dev/null
+++ b/mCordPortal/src/app/view/profiles-list/profiles-list.js
@@ -0,0 +1,63 @@
+/**
+ * © OpenCORD
+ *
+ * Visit http://guide.xosproject.org/devguide/addview/ for more information
+ *
+ * Created by teone on 6/13/16.
+ */
+
+(function () {
+  'use strict';
+  angular.module('mCord')
+    .directive('profilesList', function ($uibModal) {
+      return {
+        restrict: 'E',
+        scope: {},
+        controllerAs: 'vm',
+        templateUrl: 'app/view/profiles-list/profiles-list.tpl.html',
+        controller: function ($log, Profile) {
+          Profile.query().$promise
+            .then((profiles) => {
+              this.profiles = profiles;
+            });
+
+          this.tableConfig = {
+            order: true,
+            filter: 'field',
+            columns: [
+              {
+                label: '#',
+                prop: 'Name',
+                link: item => `#/profile/${item.Name}`
+              },
+              {
+                label: 'DlSchedType',
+                prop: 'DlSchedType'
+              },
+              {
+                label: 'DlAllocRBRate',
+                prop: 'DlAllocRBRate'
+              },
+              {
+                label: 'UlSchedType',
+                prop: 'UlSchedType'
+              },
+              {
+                label: 'UlAllocRBRate',
+                prop: 'UlAllocRBRate'
+              },
+              {
+                label: 'Start',
+                prop: 'Start'
+              },
+              {
+                label: 'End',
+                prop: 'End'
+              }
+            ]
+          };
+        }
+      }
+    });
+})();
+
diff --git a/mCordPortal/src/app/view/profiles-list/profiles-list.tpl.html b/mCordPortal/src/app/view/profiles-list/profiles-list.tpl.html
new file mode 100644
index 0000000..f1c17f6
--- /dev/null
+++ b/mCordPortal/src/app/view/profiles-list/profiles-list.tpl.html
@@ -0,0 +1,3 @@
+<div class="container-fluid">
+    <xos-table config="vm.tableConfig" data="vm.profiles"></xos-table>
+</div>
\ No newline at end of file