Style unstyled alerts

This commit is contained in:
Samuel Dionne-Riel
2021-03-31 20:03:44 -04:00
committed by Tyson Whitehead
parent db2c9fe96a
commit 20e3c51ba9
4 changed files with 5 additions and 5 deletions

View File

@@ -36,12 +36,12 @@
[% IF jobs.size == 0 %]
<div class="alert">There are no matching jobs.</div>
<div class="alert alert-warning">There are no matching jobs.</div>
[% ELSE %]
[% IF nrJobs > jobs.size %]
<div class="alert">Showing the first [% jobs.size %] jobs. <a href="javascript:setFilter('filter=%')">Show all [% nrJobs %] jobs...</a></div>
<div class="alert alert-info">Showing the first [% jobs.size %] jobs. <a href="javascript:setFilter('filter=%')">Show all [% nrJobs %] jobs...</a></div>
[% END %]
[% evalIds = evals.keys.nsort.reverse %]