7f3fa0d60b
The web page previously bounced out to the "fedora-atomic" component - but we really want a bit of web UI that's shared between products. Like how Koji is a generic frontend. In particular, this now comes with a start of a generic "repoweb".
14 lines
657 B
HTML
14 lines
657 B
HTML
<article>
|
|
<h3>Log for {{ revision }}</h3>
|
|
<ul class="list-group">
|
|
<li ng-repeat="commit in commits" class="list-group-item">
|
|
<p>{{ commit.revision }} created at {{ commit.formattedDate }} <a class="btn btn-default" href="#/repoweb/commit/{{ commit.revision }}">Details »</a></p>
|
|
<p ng-if="commit.parent">Parent: <a href="#/repoweb/log/{{ commit.parent }}">{{ commit.parent }}</a></p>
|
|
<p ng-if="!commit.parent">(No parent)</p>
|
|
<p ng-if="commit.diffstats">
|
|
{{ commit.diffstats.added }} files added, {{ commit.diffstats.removed }} removed, {{ commit.diffstats.modified }} modified
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
</article>
|