Skip to content

Commit

Permalink
Fix Evaluation List
Browse files Browse the repository at this point in the history
  • Loading branch information
bbengfort committed Oct 6, 2024
1 parent cc6ab69 commit dbd9801
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions parley/templates/evaluation/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ <h4 class="mb-1 name">

<!-- Time -->
<p class="card-text small text-muted">
{{ evaluation.prompts.count }} prompts
{{ evaluation.prompts.count }} prompts &middot; {{ evaluation.llms.count }} models
</p>

</div>
<div class="col-auto">

<!-- Button -->
<a href="{% url 'evaluation-download' evaluation.pk %}" class="btn btn-sm btn-white d-none d-md-inline-block">
Download
<a href="{% url 'evaluation-download' evaluation.pk %}" class="btn btn-sm btn-white d-none d-xl-inline-block">
Download Prompts
</a>

</div>
Expand All @@ -70,6 +70,9 @@ <h4 class="mb-1 name">
<a href="{{ evaluation.get_absolute_url }}" class="dropdown-item">
View Models
</a>
<a href="{% url 'evaluation-download' evaluation.pk %}" class="dropdown-item d-xl-none">
Download Prompts
</a>
</div>
</div>

Expand Down

0 comments on commit dbd9801

Please sign in to comment.