{{ election_name }}
Results
The budget of {{ budget }} GBP was allocated across {{ rounds|length }} projects:
{{ election_name}} had a total of {{ total_votes }} voters participating.
Between these voters there was a total of {{ budget }} GBP available, of which {{ spent }} GBP was spent.
In total, there were {{ number_of_elected_projects }} projects elected, and {{ number_of_unelected_projects }} projects not elected.
{# The elected projects were:
{% for p in projects %}
{{ projects[p]["name"] }},
{% endfor %} #}
The projects and their descriptions are as follows:
{% for p in projects %}
{{ projects[p]["name"] }}: {{ projects[p]["description"] }}
{% endfor %}
{% set voter_budget = (budget | int) / (total_votes | int) %}
Each of the voters had a budget of {{ '%0.2f' % voter_budget | float }} GBP to allocate to the projects.
The projects were elected using the Method of Equal Shares, where the total budget is virtually divided equally among the voters.
The following web-page outlines the process of the election and the step by step process of how each project was chosen.
Round | ID | Project Name | Cost | Number of Votes | Effective Support | Chart |
---|---|---|---|---|---|---|
›{{ loop.index }} |
{{ round.id }} | {{ projects[round.id]["name"] }} | {{ round.cost }} | {{ round.totalvotes }} | {{ round.effective_vote_count[round.id] | int }} |
↓ {{ round.cost }}
↑
{{ round.initial_voter_funding | int}}
|
› |
{{ rejected.id }} | {{ projects[rejected.id]["name"] }} | {{ rejected.cost }} | {{ rejected.totalvotes }} | {{ round.effective_vote_count[rejected.id] | int }} |
↓ {{ rejected.cost }}
↑
{{ rejected.initial_voter_funding | int}}
|