← Back to Voting
Transparency Results
All votes from all co-authors, fully transparent. No data manipulation is possible because everyone sees the same raw data.
{% for a in all_authors %}
{{ a.name }}{{ ' ✓' if a.finalized else '' }}
{% endfor %}
{% if not all_authors %}
No votes submitted yet
{% endif %}
Hardware & Solutions
{% if hw_votes %}
{% for solution in hw_solutions %}
{% set sol_votes = hw_votes | selectattr('solution', 'equalto', solution.name) | list %}
{% if sol_votes %}
| {{ solution.name }} |
Co-Author |
{% for cat in hw_categories %}
{{ hw_labels[cat][:8] }} |
{% endfor %}
Avg |
{% for vote in sol_votes %}
|
{{ vote.name }} |
{% for cat in hw_categories %}
{% if vote[cat] %}
{{ vote[cat] }}★
{% else %}
—
{% endif %}
|
{% endfor %}
{% set vals = [] %}
{% for cat in hw_categories %}
{% if vote[cat] %}{% set _ = vals.append(vote[cat]) %}{% endif %}
{% endfor %}
{% if vals %}
{{ '%.1f' | format(vals | sum / vals | length) }}
{% else %}
—
{% endif %}
|
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
No hardware votes submitted yet.
{% endif %}
Firewall Operating Systems
{% if os_votes %}
{% for os in os_solutions %}
{% set sol_votes = os_votes | selectattr('os_name', 'equalto', os.name) | list %}
{% if sol_votes %}
| {{ os.name }} |
Co-Author |
{% for cat in os_categories %}
{{ os_labels[cat][:8] }} |
{% endfor %}
Avg |
{% for vote in sol_votes %}
|
{{ vote.name }} |
{% for cat in os_categories %}
{% if vote[cat] %}
{{ vote[cat] }}★
{% else %}
—
{% endif %}
|
{% endfor %}
{% set vals = [] %}
{% for cat in os_categories %}
{% if vote[cat] %}{% set _ = vals.append(vote[cat]) %}{% endif %}
{% endfor %}
{% if vals %}
{{ '%.1f' | format(vals | sum / vals | length) }}
{% else %}
—
{% endif %}
|
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
No OS votes submitted yet.
{% endif %}