Tabs VS Spaces
{% if tab_count == space_count %} TABS and SPACES are evenly matched! {% elif tab_count > space_count %} TABS are winning by {{tab_count - space_count}} {{'votes' if tab_count - space_count > 1 else 'vote'}}! {% elif space_count > tab_count %} SPACES are winning by {{space_count - tab_count}} {{'votes' if space_count - tab_count > 1 else 'vote'}}! {% endif %}
keyboard_tab
{{tab_count}} votes
Vote for TABS
space_bar
{{space_count}} votes
Vote for SPACES
Recent Votes
{% for vote in recent_votes %}
{% if vote.candidate == "TABS" %}
keyboard_tab
{% elif vote.candidate == "SPACES" %}
space_bar
{% endif %}
A vote for
{{vote.candidate}}
was cast at {{vote.time_cast}}
{% endfor %}