Skip to content

Commit

Permalink
Change Release Status page (#506)
Browse files Browse the repository at this point in the history
Replace <buildsummary> with more regular <a> link
  • Loading branch information
vstinner authored Jul 17, 2024
1 parent 7f54581 commit e5d6b06
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion master/custom/templates/releasedashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,13 @@ <h4 class="panel-title">
</div>
<div class="panel-body">
{% for builder, build in info %}
<div> <buildsummary buildid="{{ build.buildid }}" condensed="1"/> </div>
<!-- BROKEN? <div> <buildsummary buildid="{{build.buildid}}" condensed="1"/> </div> -->
<div>
<a class="badge-status badge results_{{build.results_text | upper}}"
href="#/builders/{{build.builderid}}/builds/{{build.number}}">
{{build.number}}
</a>
</div>
{% endfor %}
</div>
</div>
Expand Down

0 comments on commit e5d6b06

Please sign in to comment.