Skip to content

Commit

Permalink
apps/budgeting: readd the old list to proposal list for testing and l…
Browse files Browse the repository at this point in the history
…ater release
  • Loading branch information
fuzzylogic2000 committed Dec 1, 2021
1 parent fce4f4d commit c5b172a
Showing 1 changed file with 29 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
{% endblock %}

{% block phase_content %}
<div class="l-wrapper u-spacer-bottom u-spacer-top-double">
<div class="l-center-8">
{% include "meinberlin_contrib/includes/map_filter_and_sort.html" with filter=view.filter mode=view.mode %}
</div>
</div>
{% if view.mode == 'map' %}
<div class="l-wrapper u-spacer-bottom u-spacer-top-double">
<div class="l-center-8">
{% include "meinberlin_contrib/includes/map_filter_and_sort.html" with filter=view.filter mode=view.mode %}
</div>
</div>
<div class="map-list">
<div class="map-list__controls">
<div class="l-wrapper">
Expand All @@ -40,5 +40,29 @@
</div>
{% else %}
{% react_proposals view.module %}

<div class="l-wrapper u-spacer-bottom u-spacer-top-double">
<div class="l-center-8">
<div>This is the old list to compare the new list above to. And we will only deploy the old list when we do deploy.</div>
{% include "meinberlin_contrib/includes/map_filter_and_sort.html" with filter=view.filter mode=view.mode %}
</div>
</div>
<div class="module-content--light">
<div class="l-wrapper">
<div class="l-center-8">
{% if object_list.count > 0 %}
<ul class="u-list-reset">
{% for object in object_list %}
{% include "meinberlin_contrib/includes/proposal_list_item.html" with object=object %}
{% endfor %}
</ul>
{% else %}
{% trans "Nothing to show" %}
{% endif %}

{% include "meinberlin_contrib/includes/pagination.html" %}
</div>
</div>
</div>
{% endif %}
{% endblock %}

0 comments on commit c5b172a

Please sign in to comment.