Changing 'Work in progress' text to 'WIP / Help needed'

This commit is contained in:
Sander Ferdinand 2018-08-18 22:51:32 +02:00
parent 3fc3903d7e
commit e839934dd3
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@
Funding required <small>({{summary_data['statuses'][2]}})</small>
</label>
<label onclick="proposalNavbarclickDataHref(this);" data-href="{{ url_for('proposals', status=3) }}" class="btn btn-success {% if status == 3 %}active{% endif %}">
Work in progress <small>({{summary_data['statuses'][3]}})</small>
WIP / Help needed <small>({{summary_data['statuses'][3]}})</small>
</label>
<label onclick="proposalNavbarclickDataHref(this);" data-href="{{ url_for('proposals', status=4) }}" class="btn btn-success {% if status == 4 %}active{% endif %}">
Completed <small>({{summary_data['statuses'][4]}})</small>

View File

@ -26,7 +26,7 @@
<div class="row">
<div class="col-lg-12">
{% if proposals['wip'] %}
{{ proposal_table(title='Work in progress', _proposals=proposals['wip']) }}
{{ proposal_table(title='WIP / Help needed', _proposals=proposals['wip']) }}
{% endif %}
</div>
</div>

View File

@ -25,7 +25,7 @@
{% elif proposal.status == 2 %}
Seeking funding
{% elif proposal.status == 3 %}
Work in progress
WIP / Help needed
{% elif proposal.status == 4 %}
Completed
{% endif %}