testbed list: make it uppercase. Actions: send confirmation email on user validation
[unfold.git] / plugins / testbeds / templates / testbeds.html
index fe8c2ea..22f7f0a 100644 (file)
@@ -1,3 +1,24 @@
-<div id={{ domid }}>
+<div id={{ domid }} ng-controller="TestbedsCtrl">
+
 <div class="list-group-item sl-platform"><span class="list-group-item-heading">Testbeds</span></div>
+
+<div ng-repeat="testbed in testbeds"
+     ng-click="select(testbed)">
+       <a href="#" 
+          class="list-group-item sl-platform"
+       ng-class="{active: testbed.active}"
+          id="testbeds-filter_{[{ testbed.network_hrn }]}"
+          data-platform="{[{ testbed.network_hrn }]}">
+       <span class="list-group-item-heading">{[{ testbed.platform }]}</span>
+       <!--<p class="list-group-item-heading">{[{ testbed.network_hrn }]}</p>-->
+       </a>
+</div>
+
+<style>
+a.sl-platform  {
+    text-transform: uppercase;
+}
+
+</style>
+
 </div>