Skip to content

Commit

Permalink
add link to run artifacts on changes table
Browse files Browse the repository at this point in the history
  • Loading branch information
sadiqj committed Jul 24, 2019
1 parent ce7bee5 commit 6983e8d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion codespeed/static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ table.info tbody .infofirst { width: 10em; text-align: left; }

tbody.commits tr td { border-bottom: 1px solid #CDCDCD; vertical-align: top; }
tbody.commits tr > td:first-child { padding-right: 20px; }
tbody.commits tr td.date, table.revision tr .infofirst, div.author, span.note, table.info tbody .infofirst {
tbody.commits tr td.date, table.revision tr .infofirst, div.author, span.note, table.info tbody .infofirst, table.revision tr .artifactstitle {
font-size: 92%;
color: #666666;
}
Expand Down
1 change: 1 addition & 0 deletions codespeed/templates/codespeed/changes_data.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
{% ifnotequal rev.branch.project.repo_type "N" %}
<tr class="repo-path"><th class="infofirst">Repo</th><td>{{ rev.branch.project.repo_path }}</td></tr>
{% endifnotequal %}
<tr class="artifacts"><th class="artifactstitle">Artifacts</th><td><a href="/artifacts/{{ rev.commitid }}">link</a></td></tr>
</tbody>
</table>

Expand Down
2 changes: 1 addition & 1 deletion codespeed/templates/codespeed/changes_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
{% endif%}{% if units.hasmax %}<td>{{ row.val_max|floatformat:units.precission }}</td>
{% endif%}<td>{% ifequal row.change "-" %}-{% else %}{{ row.change|percentage }}%{% endifequal %}</td>
<td>{% ifequal row.trend "-" %}-{% else %}{{ row.trend|percentage }}%{% endifequal %}</td>
<td><a href="/artifacts/{{ row.artifacts_location }}">url</a></td>
<td><a href="/artifacts/{{ row.artifacts_location }}">link</a></td>
</tr>{% endfor %}
</tbody>
</table>{% endfor %}
Expand Down

0 comments on commit 6983e8d

Please sign in to comment.