diff --git a/guacamole/src/main/webapp/app/groupList/directives/guacGroupList.js b/guacamole/src/main/webapp/app/groupList/directives/guacGroupList.js
index 42399fd2b..150607a9a 100644
--- a/guacamole/src/main/webapp/app/groupList/directives/guacGroupList.js
+++ b/guacamole/src/main/webapp/app/groupList/directives/guacGroupList.js
@@ -35,7 +35,36 @@ angular.module('groupList').directive('guacGroupList', [function guacGroupList()
*
* @type ConnectionGroup|Object
*/
- connectionGroup : '='
+ connectionGroup : '=',
+
+ /**
+ * Arbitrary object which shall be made available to the connection
+ * and connection group templates within the scope as
+ * context
.
+ */
+ context : '=',
+
+ /**
+ * The URL or ID of the Angular template to use when rendering a
+ * connection. The @link{GroupListItem} associated with that
+ * connection will be exposed within the scope of the template
+ * as item
, and the arbitrary context object, if any,
+ * will be exposed as context
.
+ *
+ * @type String
+ */
+ connectionTemplate : '=',
+
+ /**
+ * The URL or ID of the Angular template to use when rendering a
+ * connection group. The @link{GroupListItem} associated with that
+ * connection group will be exposed within the scope of the
+ * template as item
, and the arbitrary context object,
+ * if any, will be exposed as context
.
+ *
+ * @type String
+ */
+ connectionGroupTemplate : '='
},
diff --git a/guacamole/src/main/webapp/app/groupList/styles/groupList.css b/guacamole/src/main/webapp/app/groupList/styles/groupList.css
deleted file mode 100644
index 85fdf92d6..000000000
--- a/guacamole/src/main/webapp/app/groupList/styles/groupList.css
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Copyright (C) 2014 Glyptodon LLC
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
diff --git a/guacamole/src/main/webapp/app/groupList/templates/guacGroupList.html b/guacamole/src/main/webapp/app/groupList/templates/guacGroupList.html
index 269961041..942cacb79 100644
--- a/guacamole/src/main/webapp/app/groupList/templates/guacGroupList.html
+++ b/guacamole/src/main/webapp/app/groupList/templates/guacGroupList.html
@@ -25,35 +25,18 @@