testbed list: make it uppercase. Actions: send confirmation email on user validation
[myslice.git] / plugins / testbeds / templates / testbeds.html
1 <div id={{ domid }} ng-controller="TestbedsCtrl">
2
3 <div class="list-group-item sl-platform"><span class="list-group-item-heading">Testbeds</span></div>
4
5 <div ng-repeat="testbed in testbeds"
6      ng-click="select(testbed)">
7         <a href="#" 
8            class="list-group-item sl-platform"
9        ng-class="{active: testbed.active}"
10            id="testbeds-filter_{[{ testbed.network_hrn }]}"
11            data-platform="{[{ testbed.network_hrn }]}">
12         <span class="list-group-item-heading">{[{ testbed.platform }]}</span>
13         <!--<p class="list-group-item-heading">{[{ testbed.network_hrn }]}</p>-->
14         </a>
15 </div>
16
17 <style>
18 a.sl-platform  {
19     text-transform: uppercase;
20 }
21
22 </style>
23
24 </div>