Skip to content

Commit

Permalink
Add note to parl elections about cross boundary contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
symroe committed Jul 1, 2024
1 parent ce125ad commit 0e2665d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
7 changes: 7 additions & 0 deletions postcode_lookup/template_sorter.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,3 +435,10 @@ def toc_items(self) -> Optional[List[Dict[str, str]]]:

toc += contact_details_toc
return toc

def has_and_parl_ballots(self):
for date in self.dates:
for ballot in date.date_data.ballots:
if ballot.ballot_paper_id.startswith("parl."):
return True
return False
2 changes: 1 addition & 1 deletion postcode_lookup/templates/includes/ballot_model.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
{% endif %}

<p>Visit <a href=&quot;https://whocanivotefor.co.uk/elections/{{ postcode }}&quot; target=&quot;_blank&quot;
rel=&quot;noopener&quot; class=&quot;o-external-link&quot;>Who Can I Vote For <span
class=&quot;o-external-link&quot;>Who Can I Vote For <span
class=&quot;visually-hidden&quot;>(Opens in new window)</span></a> to find out more about your
candidates</p>
{% endif %}
Expand Down
14 changes: 14 additions & 0 deletions postcode_lookup/templates/includes/organisation_contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,25 @@ <h2 id="electoral-services">{% trans %}Electoral Office for Northern Ireland{% e
</p>
{% else %}
<h2 id="electoral-services">{% trans %}Your local council{% endtrans %}</h2>

{% trans %}


<p>For questions about your poll card, polling station, or about returning your postal voting ballot,
contact
your council.</p>
{% endtrans %}

{% if template_sorter.has_and_parl_ballots() %}
{% trans %}
<p>
Here are contact details for your usual election team. However, for some elections, electoral
boundaries mean that your neighbouring election team may be responsible for the constituency you
are
in. Your usual election team will be able to provide their contact details if this is the case.
</p>
{% endtrans %}
{% endif %}
{% endif %}

{% endif %}
Expand Down

0 comments on commit 0e2665d

Please sign in to comment.