diff --git a/vote/templates/vote/index.html b/vote/templates/vote/index.html index 30bd8a6ecebea75dceef6c3a72bb0b14119c6e6c..efbf25ec87c627ef2c0ac2d80265f204e8c195e8 100644 --- a/vote/templates/vote/index.html +++ b/vote/templates/vote/index.html @@ -9,7 +9,7 @@ <div class="card-body"> <h4 class="text-center d-inline">{{ title }}</h4> {% if meeting_link %} - <div><small>Meeting at <a href="{{ meeting_link }}">{{ meeting_link }}</a></small></div> + <div><small>Meeting at <a href="{{ meeting_link }}">{{ meeting_link }}</a></small></div> {% endif %} </div> </div> @@ -25,7 +25,7 @@ </div> <div class="card-body"> {% for election, can_vote, edit in open_elections %} - {% include 'vote/index_election_item.html' %} + {% include 'vote/index_election_item.html' %} {% endfor %} </div> </div> @@ -37,7 +37,7 @@ </div> <div class="card-body"> {% for election, can_vote, edit in upcoming_elections %} - {% include 'vote/index_election_item.html' %} + {% include 'vote/index_election_item.html' %} {% endfor %} </div> </div> @@ -49,7 +49,7 @@ </div> <div class="card-body"> {% for election, can_vote, edit in published_elections %} - {% include 'vote/index_election_item.html' %} + {% include 'vote/index_election_item.html' %} {% endfor %} </div> </div> @@ -61,7 +61,7 @@ </div> <div class="card-body"> {% for election, can_vote, edit in closed_elections %} - {% include 'vote/index_election_item.html' %} + {% include 'vote/index_election_item.html' %} {% endfor %} </div> </div> diff --git a/vote/templates/vote/spectator.html b/vote/templates/vote/spectator.html index 2c8accf3749f3e0e1dd12e332f5753b1583d3896..d026cfaf81d55688310d2cb328239f6ce9a7e327 100644 --- a/vote/templates/vote/spectator.html +++ b/vote/templates/vote/spectator.html @@ -10,7 +10,7 @@ <div class="card-body"> <h4 class="text-center d-inline">{{ title }} - Spectator View</h4> {% if meeting_link %} - <div><small>Meeting at <a href="{{ meeting_link }}">{{ meeting_link }}</a></small></div> + <div><small>Meeting at <a href="{{ meeting_link }}">{{ meeting_link }}</a></small></div> {% endif %} </div> </div> @@ -26,7 +26,7 @@ </div> <div class="card-body"> {% for election in open_elections %} - {% include 'vote/spectator_election_item.html' %} + {% include 'vote/spectator_election_item.html' %} {% endfor %} </div> </div> @@ -38,7 +38,7 @@ </div> <div class="card-body"> {% for election in upcoming_elections %} - {% include 'vote/spectator_election_item.html' %} + {% include 'vote/spectator_election_item.html' %} {% endfor %} </div> </div> @@ -50,7 +50,7 @@ </div> <div class="card-body"> {% for election in published_elections %} - {% include 'vote/spectator_election_item.html' %} + {% include 'vote/spectator_election_item.html' %} {% endfor %} </div> </div> @@ -62,7 +62,7 @@ </div> <div class="card-body"> {% for election in closed_elections %} - {% include 'vote/spectator_election_item.html' %} + {% include 'vote/spectator_election_item.html' %} {% endfor %} </div> </div>