Add a html tag for the .data-table__data class.

This commit is contained in:
Hugo Soucy 2015-03-18 19:22:44 -04:00
parent ea7fc1dff6
commit 9deb056b20
5 changed files with 13 additions and 5 deletions

View File

@ -1 +1,3 @@
<td class="data-table__duration">{{entry.last_state_change | timeElapsed}}</td> <td class="data-table__duration">
<time class="data-table__data">{{entry.last_state_change | timeElapsed}}</time>
</td>

View File

@ -1 +1,3 @@
<td ng-controller="CellHostAddressCtrl">{{entry.address}}</td> <td class="data-table__hostaddress" ng-controller="CellHostAddressCtrl">
<span class="data-table__data">{{entry.address}}</span>
</td>

View File

@ -1 +1,3 @@
<td class="{{alert_level}}" ng-controller="CellHostStatusCtrl">{{entry.host_status}}</td> <td class="{{alert_level}}" ng-controller="CellHostStatusCtrl">
<span class="data-table__data">{{entry.host_status}}</span>
</td>

View File

@ -1,3 +1,3 @@
<td class="data-table__host {{state}}" ng-controller="CellHostsHostCtrl"> <td class="data-table__hosts_host {{state}}" ng-controller="CellHostsHostCtrl">
<a class="data-table__data" href="#">{{entry.name}}</a> <a class="data-table__data" href="#">{{entry.name}}</a>
</td> </td>

View File

@ -1 +1,3 @@
<td class="data-table__lastcheck">{{entry.last_check * 1000 | date: medium}}</td> <td class="data-table__lastcheck">
<time class="data-table__data">{{entry.last_check * 1000 | date: medium}}</time>
</td>