use newer icons consistently
This commit is contained in:
@ -40,17 +40,18 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
[% FOREACH j IN jobsets %]
|
||||
[% successrate = 0 %]
|
||||
<tr class="clickable [% IF odd %] odd [% END; odd = !odd %]"
|
||||
onclick="window.location = '[% c.uri_for('/jobset' project.name j.name) %]'">
|
||||
<td>
|
||||
[% IF j.get_column('nrscheduled') > 0 %]
|
||||
<img src="/static/images/question-mark.png" alt="Scheduled" />
|
||||
<img src="/static/images/help_16.png" alt="Scheduled" />
|
||||
[% ELSIF j.get_column('nrfailed') == 0 %]
|
||||
<img src="/static/images/success.gif" alt="Succeeded" />
|
||||
<img src="/static/images/checkmark_16.png" alt="Succeeded" />
|
||||
[% ELSIF j.get_column('nrfailed') > 0 && j.get_column('nrsucceeded') > 0 %]
|
||||
<img src="/static/images/failure-some.gif" alt="Some Failed" />
|
||||
<img src="/static/images/error_some_16.png" alt="Some Failed" />
|
||||
[% ELSE %]
|
||||
<img src="/static/images/failure.gif" alt="All Failed" />
|
||||
<img src="/static/images/error_16.png" alt="All Failed" />
|
||||
[% END %]
|
||||
</td>
|
||||
<td>[% INCLUDE renderJobsetName project = project.name jobset = j.name %]</td>
|
||||
|
Reference in New Issue
Block a user