Download:
child 103:679aa3a62795
parent 101:bb31b74cc331
102:c5bfc491a942
Anton Shestakov <av6@dwimlabs.net>, Mon, 04 Jul 2016 19:20:30 +0800
viewer: show branch in a separate column in overview tables

2 файлов изменено, 4 вставок(+), 2 удалений(-) [+]
templates/index.html file | annotate | diff | comparison | revisions
templates/project.html file | annotate | diff | comparison | revisions
--- a/templates/index.html Mon Jul 04 19:11:13 2016 +0800
+++ b/templates/index.html Mon Jul 04 19:20:30 2016 +0800
@@ -14,7 +14,8 @@
<td>{% module Badges(check) %}</td>
<td><a href="{{ check.get_url() }}">check #{{ check.ordinal }}</a></td>
<td><a href="{{ project.get_url() }}">{{ project.get_title() }}</a></td>
- <td>{{ change.rev }}:{{ change.node[:12] }} {{ change.branch }}</td>
+ <td>{{ change.branch }}</td>
+ <td>{{ change.rev }}:{{ change.node[:12] }}</td>
<td>{% module Time(check.finished) %}</td>
<td>{{ check.get_duration() }}</td>
</tr>
--- a/templates/project.html Mon Jul 04 19:11:13 2016 +0800
+++ b/templates/project.html Mon Jul 04 19:20:30 2016 +0800
@@ -22,7 +22,8 @@
<tr>
<td>{% module Badges(check) %}</td>
<td><a href="{{ check.get_url() }}">check #{{ check.ordinal }}</a></td>
- <td>{{ change.rev }}:{{ change.node[:12] }} {{ change.branch }}</td>
+ <td>{{ change.branch }}</td>
+ <td>{{ change.rev }}:{{ change.node[:12] }}</td>
<td class="uk-text-break">
<div>{{ change.message }}</div>
<div>{{ change.author }}, {% module Time(change.date, False) %}</div>