Created
October 1, 2013 06:37
-
-
Save dcramer/6774625 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section ng-controller="ChangeListCtrl"> | |
<table class="change-list table table-striped"> | |
<tbody> | |
<tr class="status-{{change.lastBuild.status.id}} result-{{change.lastBuild.result.id}}" | |
ng-repeat="change in changes | orderBy:dateModified:true" ng-animate="'animate-fade'"> | |
<td> | |
<div class="indicator" title="{{change.lastBuild.result.name}}"> | |
<div data-result="{{change.lastBuild.result.id}}" | |
data-value="{{change.lastBuild.progress}}" ng-radial-progress-bar> </div> | |
</div> | |
</td> | |
<td> | |
<a href="#{{change.link}}">{{change.name}}</a><br> | |
<small> | |
<a href="#">{{change.project.name}}</a> | |
<span ng-if="change.author">— {{change.author.name}}</span> | |
<span class="date" ng-if="change.dateStarted">{{timeSince(change.dateStarted)}}</span> | |
</small> | |
</td> | |
</tr> | |
</tbody> | |
</table> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment