Skip to content

Commit 270bf23

Browse files
authored
Fix fund & round getting put together for applicants (#4541)
1 parent 7286a31 commit 270bf23

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

hypha/apply/projects/templates/application_projects/includes/project_header.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<span>{{ object.fund_name }}</span>
1313

1414
{% if object.submission.round %}
15-
{% if request.user.is_apply_staff %}
16-
<span>
15+
<span>
16+
{% if request.user.is_apply_staff %}
1717
<a class="text-white underline"
1818
href="{% url 'apply:submissions:list' %}?round={{ object.submission.round.pk }}"
1919
>{{ object.submission.round }}</a>
20-
</span>
21-
{% else %}
22-
{{ object.submission.round }}
23-
{% endif %}
20+
{% else %}
21+
{{ object.submission.round }}
22+
{% endif %}
23+
</span>
2424
{% endif %}
2525

2626
{% if not HIDE_STAFF_IDENTITY or request.user.is_apply_staff %}

0 commit comments

Comments
 (0)