woodpecker/cmd/drone-server/static/scripts/views/builds/index/content.html

18 lines
620 B
HTML
Raw Normal View History

<article>
2015-07-13 05:23:50 +00:00
<section>
2015-07-13 19:24:52 +00:00
<a class="row build-row" ng-repeat="build in builds | orderBy:'-number'" ng-href="/{{ repo.full_name }}/{{ build.number }}">
2015-07-13 05:23:50 +00:00
<div>
<div ng-class="[ 'build-num', build.status ]"></div>
</div>
<div>
<h3>{{ build.head_commit.message }}</h3>
2015-07-13 19:24:52 +00:00
<p>
<strong>{{ build.head_commit.author.login }}</strong> pushed to <strong>{{ build.head_commit.branch}}</strong> {{ build.started_at | fromNow }}
</p>
2015-07-13 05:23:50 +00:00
<div style="position:absolute;top:30px;right:30px;color:#CCC;"># {{build.number}}</div>
</div>
</a>
</section>
</article>