mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
HTML development for the proposal overview page
This commit is contained in:
parent
e839934dd3
commit
0c9c0cd5a5
7 changed files with 61 additions and 19 deletions
|
@ -2,7 +2,7 @@
|
|||
{% block content %}
|
||||
{% from 'proposal/macros/table.html' import proposal_table %}
|
||||
|
||||
<div class="container" style="margin-top:8px;">
|
||||
<div class="container proposal-overview" style="margin-top:25px;">
|
||||
{% include 'proposal/macros/navbar.html' %}
|
||||
|
||||
<div class="row">
|
||||
|
@ -10,23 +10,32 @@
|
|||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
{% if proposals['proposed'] %}
|
||||
{{ proposal_table(title='Proposals', _proposals=proposals['proposed']) }}
|
||||
<hr>
|
||||
{{ proposal_table(title='Proposals', status=1, _proposals=proposals['proposed']) }}
|
||||
<br>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
{% if proposals['funding'] %}
|
||||
{{ proposal_table(title='Funding required', _proposals=proposals['funding']) }}
|
||||
<hr>
|
||||
{{ proposal_table(title='Funding required', status=2, _proposals=proposals['funding']) }}
|
||||
<br>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
{% if proposals['wip'] %}
|
||||
{{ proposal_table(title='WIP / Help needed', _proposals=proposals['wip']) }}
|
||||
{{ proposal_table(title='WIP / Help needed', status=3, _proposals=proposals['wip']) }}
|
||||
<br>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
{% if proposals['completed'] %}
|
||||
{{ proposal_table(title='Completed', status=4, _proposals=proposals['completed']) }}
|
||||
<br>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue