rpm-ostree/composeui/partials/repoweb-commit.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

25 lines
595 B
HTML

<article>
<h3>Commit {{ revision }}</h3>
<dl class="dl-horizontal">
<dt>Revision</dt>
<dd>{{ commit.revision }}</dd>
<dt>Parent</dt>
<dd>{{ commit.parent || "No parent" }}</dd>
<dt>Timestamp</dt>
<dd>{{ commit.formattedDate }}</dd>
<dt>Files added</dt>
<dd>{{ commit.diffstats.added }}</dd>
<dt>Files Removed</dt>
<dd>{{ commit.diffstats.removed }}</dd>
<dt>Files Modified</dt>
<dd>{{ commit.diffstats.modified }}</dd>
</dl>
<hr>
<h3>Diff text</h3>
<div class="row">
<pre>
{{ commit.difftxt }}
</pre>
</div>
</article>