Skip to content

Instantly share code, notes, and snippets.

@dcramer
Created October 1, 2013 06:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcramer/6774625 to your computer and use it in GitHub Desktop.
Save dcramer/6774625 to your computer and use it in GitHub Desktop.
<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>&nbsp;</div>
</div>
</td>
<td>
<a href="#{{change.link}}">{{change.name}}</a><br>
<small>
<a href="#">{{change.project.name}}</a>
<span ng-if="change.author">&mdash; {{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