Skip to content

Commit

Permalink
Fix final results button
Browse files Browse the repository at this point in the history
  • Loading branch information
tudoramariei committed Dec 4, 2024
1 parent f5f1641 commit 412108f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 11 deletions.
6 changes: 5 additions & 1 deletion backend/hub/templates/hub/ce/edition_header.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ <h1 class="title has-text-centered">
<div class="section has-text-centered">
<a href="{% url 'election_rules' %}" class="button is-warning">Regulament alegeri CE</a>
{% if RESULTS_ENABLED %}
<a href="{% url 'results' %}" class="button is-warning">Rezultate finale</a>
{% if FINAL_RESULTS_ENABLED %}
<a href="{% url 'results' %}" class="button is-warning">Rezultate finale</a>
{% else %}
<a href="{% url 'results' %}" class="button is-warning">Vezi Rezultatele finale</a>
{% endif %}
{% endif %}
</div>
24 changes: 14 additions & 10 deletions backend/hub/templates/hub/ces/edition_header.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ <h1 class="title has-text-centered">

{% if not CANDIDATE_SUPPORTING_ENABLED %}
{% if source == "candidates" %}
Află <a href="{% url 'all-proposed' %}">aici</a> care au fost toate candidaturile depuse pentru alegerea
Află <a href="{% url 'all-proposed' %}">aici</a> care au fost toate candidaturile depuse pentru alegerea
reprezentanților societății civile în cadrul Consiliului Economic și Social 2024.

{% elif source == "all" %}
Vezi <a href="{% url 'candidates' %}">aici</a> toate candidaturile acceptate pentru alegerea
Vezi <a href="{% url 'candidates' %}">aici</a> toate candidaturile acceptate pentru alegerea
reprezentanților societății civile în cadrul Consiliului Economic și Social 2024.

{% endif %}
Expand All @@ -41,18 +41,22 @@ <h1 class="title has-text-centered">

<div class="section has-text-centered">
{% comment %}
{% if not CANDIDATE_SUPPORTING_ENABLED %}
{% if source == "candidates" %}
<a href="{% url 'all-proposed' %}" class="button is-warning">Vezi toate propunerile</a>
{% elif source == "all" %}
<a href="{% url 'candidates' %}" class="button is-warning">Vezi toți candidații</a>
{% if not CANDIDATE_SUPPORTING_ENABLED %}
{% if source == "candidates" %}
<a href="{% url 'all-proposed' %}" class="button is-warning">Vezi toate propunerile</a>
{% elif source == "all" %}
<a href="{% url 'candidates' %}" class="button is-warning">Vezi toți candidații</a>
{% endif %}
{% endif %}
{% endif %}
{% endcomment %}

<a href="{% url 'election_rules' %}" class="button is-warning">Regulament alegeri CES</a>

{% if RESULTS_ENABLED %}
<a href="{% url 'results' %}" class="button is-warning">Rezultate finale</a>
{% if FINAL_RESULTS_ENABLED %}
<a href="{% url 'results' %}" class="button is-warning">Rezultate finale</a>
{% else %}
<a href="{% url 'results' %}" class="button is-warning">Vezi Rezultatele finale</a>
{% endif %}
{% endif %}
</div>

0 comments on commit 412108f

Please sign in to comment.