Skip to content

Commit

Permalink
Merge branch 'release/0.16.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
JackMorganNZ committed Aug 18, 2019
2 parents dfec953 + 4db8c81 commit 3f2ec9e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.16.6

- Fix bug where empty progress outcome data was shown in POET admin.

## 0.16.5

- Show top three crowdsourced progress outcomes with submission threshold in POET admin.
Expand Down
2 changes: 1 addition & 1 deletion dthm4kaiako/config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Configuration for Django system."""

__version__ = "0.16.5"
__version__ = "0.16.6"
__version_info__ = tuple(
[
int(num) if num.isdigit() else num
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<{%if po.percentage|floatformat == first_po.percentage|floatformat %}strong{% else %}small{% endif %}
class="{% if po.resource_target %}text-danger{% else %}text-success{% endif %}">
{{ po }} ({{ po.percentage|floatformat }}%)
</{%if po.percentage|floatformat == first_po.percentage|floatformat %}strong{% else %}small{% endif %}><br>
{% if po %}
<{%if po.percentage|floatformat == first_po.percentage|floatformat %}strong{% else %}small{% endif %}
class="{% if po.resource_target %}text-danger{% else %}text-success{% endif %}">
{{ po }} ({{ po.percentage|floatformat }}%)
</{%if po.percentage|floatformat == first_po.percentage|floatformat %}strong{% else %}small{% endif %}><br>
{% endif %}

0 comments on commit 3f2ec9e

Please sign in to comment.