mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
Changing 'Work in progress' text to 'WIP / Help needed'
This commit is contained in:
parent
3fc3903d7e
commit
e839934dd3
3 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@
|
||||||
Funding required <small>({{summary_data['statuses'][2]}})</small>
|
Funding required <small>({{summary_data['statuses'][2]}})</small>
|
||||||
</label>
|
</label>
|
||||||
<label onclick="proposalNavbarclickDataHref(this);" data-href="{{ url_for('proposals', status=3) }}" class="btn btn-success {% if status == 3 %}active{% endif %}">
|
<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>
|
||||||
<label onclick="proposalNavbarclickDataHref(this);" data-href="{{ url_for('proposals', status=4) }}" class="btn btn-success {% if status == 4 %}active{% endif %}">
|
<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>
|
Completed <small>({{summary_data['statuses'][4]}})</small>
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-12">
|
<div class="col-lg-12">
|
||||||
{% if proposals['wip'] %}
|
{% if proposals['wip'] %}
|
||||||
{{ proposal_table(title='Work in progress', _proposals=proposals['wip']) }}
|
{{ proposal_table(title='WIP / Help needed', _proposals=proposals['wip']) }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
{% elif proposal.status == 2 %}
|
{% elif proposal.status == 2 %}
|
||||||
Seeking funding
|
Seeking funding
|
||||||
{% elif proposal.status == 3 %}
|
{% elif proposal.status == 3 %}
|
||||||
Work in progress
|
WIP / Help needed
|
||||||
{% elif proposal.status == 4 %}
|
{% elif proposal.status == 4 %}
|
||||||
Completed
|
Completed
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue