Skip to content

Commit

Permalink
Fix some issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tudoramariei committed Oct 2, 2024
1 parent ff4d8d5 commit ef82346
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion backend/hub/templates/hub/candidate/results.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@

{% endfor %}
</div>
</div>

{% include "hub/shared/pagination.html" with page_obj=page_obj domain=current_domain %}

Expand Down
2 changes: 1 addition & 1 deletion backend/hub/templates/hub/committee/partials/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
({{ counters.candidates_accepted }})</a>
</li>

<li {% if active == "accepted" %}class="is-active"{% endif %}>
<li {% if active == "confirmed" %}class="is-active"{% endif %}>
<a href="{% url 'committee-candidates' %}?status=confirmed">{% trans 'Validated candidates' %}
({{ counters.candidates_confirmed }})</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion backend/hub/workers/update_organization.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def update_organization_process(organization_id: int, token: str = ""):

organization.name = ngohub_general_data.get("name") or ""
organization.address = ngohub_general_data.get("address") or ""
organization.registration_number = ngohub_general_data.get("rafNumber") or ""
organization.registration_number = ngohub_general_data.get("nationalRegistryNumber") or ""

# Import the organization logo
logo_url: str = ngohub_general_data.get("logo") or ""
Expand Down

0 comments on commit ef82346

Please sign in to comment.