Spaces:
Runtime error
Runtime error
File size: 497 Bytes
5325fcc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
{% 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 %}
|