Skip to content

Commit

Permalink
Add anchor to the HTML template
Browse files Browse the repository at this point in the history
  • Loading branch information
Akirathan committed Feb 28, 2024
1 parent 010843d commit 7da61c7
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,10 @@ <h3 class="card-header text-center">Applied filters</h3>
<div id="benchmarks-container" class="container-fluid">
{% for bench_data in bench_datas %}
<div class="bench-container card">
<h3 class="card-header text-center">{{ bench_data.id }}</h3>
<a name="{{ bench_data.id }}"></a>
<h3 class="card-header text-center">
<a href="#{{ bench_data.id }}">{{ bench_data.id }}</a>
</h3>
<!-- This is a placeholder div for a bench chart -->
<div id="{{ bench_data.id }}" class="bench-chart"></div>
<!-- selection-info div will be shown once user selects a point in the chart -->
Expand Down

0 comments on commit 7da61c7

Please sign in to comment.