-
Details
Details
Diff Detail
Diff Detail
- Repository
- rRSFE resultsdb_frontend
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
-
| Automatic diff as part of commit; lint not applicable. |
| Automatic diff as part of commit; unit tests not applicable. |
| Path | Packages | |||
|---|---|---|---|---|
| M | resultsdb_frontend/templates/jobs.html (4 lines) |
| Commit | Tree | Parents | Author | Summary | Date |
|---|---|---|---|---|---|
| 054c065ed15d | cd1268669e8b | 373e948b5cb6 | Martin Krizek | Provide better description of the job info link (Show More…) | Jul 22 2015, 8:49 AM |
| 1 | {% extends "layout.html" %} | 1 | {% extends "layout.html" %} | ||
|---|---|---|---|---|---|
| 2 | 2 | | |||
| 3 | {% block body %} | 3 | {% block body %} | ||
| 4 | <table class="table table-striped table-bordered"> | 4 | <table class="table table-striped table-bordered"> | ||
| 5 | <thead> | 5 | <thead> | ||
| 6 | <tr> | 6 | <tr> | ||
| 7 | <th>ID</th> | 7 | <th>ID</th> | ||
| 8 | <th>Start time (UTC)</th> | 8 | <th>Start time (UTC)</th> | ||
| 9 | <th>Name</th> | 9 | <th>Name</th> | ||
| 10 | <th>Results</th> | 10 | <th>Results</th> | ||
| 11 | <th>Taskbot URL</th> | 11 | <th>Job Details</th> | ||
| 12 | </tr> | 12 | </tr> | ||
| 13 | </thead> | 13 | </thead> | ||
| 14 | <tbody> | 14 | <tbody> | ||
| 15 | {% for job in jobs.data %} | 15 | {% for job in jobs.data %} | ||
| 16 | <tr> | 16 | <tr> | ||
| 17 | <td>{{ job.id }}</td> | 17 | <td>{{ job.id }}</td> | ||
| 18 | <td>{{ job.start_time | replace("T", " ")}}</td> | 18 | <td>{{ job.start_time | replace("T", " ")}}</td> | ||
| 19 | <td>{{ job.name }}</td> | 19 | <td>{{ job.name }}</td> | ||
| 20 | <td><a href="{{ url_for('main.results', job_id = job.id) }}">{{ job.results_count }} results</a></td> | 20 | <td><a href="{{ url_for('main.results', job_id = job.id) }}">{{ job.results_count }} results</a></td> | ||
| 21 | <td><a href="{{ job.ref_url }}">Ref →</a></td> | 21 | <td><a href="{{ job.ref_url }}">Info →</a></td> | ||
| 22 | </tr> | 22 | </tr> | ||
| 23 | {% endfor %} | 23 | {% endfor %} | ||
| 24 | </tbody> | 24 | </tbody> | ||
| 25 | </table> | 25 | </table> | ||
| 26 | 26 | | |||
| 27 | 27 | | |||
| 28 | <ul class="pager"> | 28 | <ul class="pager"> | ||
| 29 | {% if jobs.prev %} | 29 | {% if jobs.prev %} | ||
| Show All 9 Lines | |||||