13
13
< h1 class ="font-heading-xl margin-y-0 "> {{ nofo_group|title }}{% if nofo_status and nofo_status != 'all' %} {{ nofo_status }}{% endif %} NOFOs</ h1 >
14
14
15
15
< p class ="nofo_index--filter ">
16
- < a href ="{% url 'nofos:nofo_index' %}?status=all&group={{ nofo_group }} " {% if nofo_status == 'all ' %}aria-current ="page "{% endif %} > {{ nofo_group|title }} NOFOs</ a > |
17
- < a href ="{% url 'nofos:nofo_index' %}?group={{ nofo_group }} " {% if not nofo_status or nofo_status == 'unpublished ' %}aria-current ="page "{% endif %} > {{ nofo_group|title }} unpublished NOFOs</ a > |
18
- < a href ="{% url 'nofos:nofo_index' %}?status=published&group={{ nofo_group }} " {% if nofo_status == 'published ' %}aria-current ="page "{% endif %} > All{% if nofo_group != 'all' %} {{ nofo_group|title }}{% endif %} published NOFOs</ a >
16
+ < a href ="{% url 'nofos:nofo_index' %}?group={{ nofo_group }} " {% if not nofo_status or nofo_status == 'in progress ' %}aria-current ="page "{% endif %} > In progress NOFOs</ a > |
17
+ < a href ="{% url 'nofos:nofo_index' %}?status=published&group={{ nofo_group }} " {% if nofo_status == 'published ' %}aria-current ="page "{% endif %} > Published NOFOs</ a > |
18
+ < a href ="{% url 'nofos:nofo_index' %}?status=paused&group={{ nofo_group }} " {% if nofo_status == 'paused ' %}aria-current ="page "{% endif %} > Paused NOFOs</ a > |
19
+ < a href ="{% url 'nofos:nofo_index' %}?status=cancelled&group={{ nofo_group }} " {% if nofo_status == 'cancelled ' %}aria-current ="page "{% endif %} > Cancelled NOFOs</ a >
19
20
</ p >
20
21
21
22
{% if user.group == 'bloom' %}
@@ -31,12 +32,16 @@ <h1 class="font-heading-xl margin-y-0">{{ nofo_group|title }}{% if nofo_status a
31
32
{% if nofo_list %}
32
33
< table class ="sortable usa-table usa-table--borderless width-full ">
33
34
< caption >
34
- {% if not nofo_status or nofo_status == 'unpublished ' %}
35
+ {% if not nofo_status or nofo_status == 'in progress ' %}
35
36
NOFOs being worked on or in review.
36
37
{% elif nofo_status == 'published' %}
37
- NOFOs that made it across the finish line.
38
+ NOFOs that rode off into the sunset.
39
+ {% elif nofo_status == 'paused' %}
40
+ NOFOs cooling their heels at the saloon.
41
+ {% elif nofo_status == 'cancelled' %}
42
+ NOFOs that were put out to pasture.
38
43
{% elif nofo_status == 'all' %}
39
- All the NOFOs fit to show .
44
+ Every NOFO in the corral .
40
45
{% else %}
41
46
List of NOFOs with status: {{ nofo_status }}
42
47
{% endif %}
0 commit comments