Details
-
Type:
Improvement
-
Status: Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.0.1
-
Fix Version/s: 2.1.0
-
Component/s: app.jobbrowser
-
Labels:None
-
Target Version:
Description
Re-style the page with:
- bootstraps status label + retired icon (label label-warning)
- map/reduce progress bars matching the colors
- remove 'View' button and add transform the 'Kill' link into a button with a 'icon-remove' icon (same on jobs/ID page)
- Username filter pre-filled with current username?
- Add an additional new filter (checkbox or dropdown for filtering on 'retired' status) (not showing retired by default)
- hide more information on jobs/ID page when a job is retired (Romain will do it)
e.g. for status
<%def name="get_status(status)"> % if status in ('SUCCEEDED', 'OK'): label-success % elif status in ('RUNNING', 'PREP'): label-warning % elif status == 'READY': label-success % else: label-important % endif </%def>
e.g. for progress bar (but not working as is when at 0%)
<div class="progress progress-info"> <div class="bar" style="width: ${job.maps_percent_complete}%;">${job.finishedMaps} / ${job.desiredMaps}</div> </div>