Files
wehub-resource-sync 74c850a456
audiocraft_tests / Run tests (push) Has been cancelled
audiocraft_docs / Run docs (push) Has been cancelled
audiocraft_linter / Run linter (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:40:30 +08:00

18 lines
497 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Results for survey #{{signature}}</h1>
<p>Checkout <a href="{{url_for('survey', signature=signature)}}">the survey page</a> for details on the models.</p>
<p>The following users voted:
{% for user in users %}
<span class="special">{{user}}</span>
{% endfor %}
{% for model in models %}
<h3>{{model['sig']}} ({{model['samples']}} samples)</h3>
<p>Ratings: {{model['mean_rating']}} ± {{model['std_rating']}}</p>
{% endfor %}
{% endblock %}