rpm-ostree/composeui/partials/repoweb-log.html
Colin Walters 7f3fa0d60b Add "composeui/"
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".
2014-03-05 13:16:22 -05:00

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 &raquo;</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>