Skip to content

Commit

Permalink
Updated high helath html to work with new measure structure
Browse files Browse the repository at this point in the history
  • Loading branch information
iMark3000 committed Sep 20, 2024
1 parent 84d496f commit c17c746
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions templates/high_health.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ <h1>High Health ({{ school_level.display_name }})</h1>
</span>
</td>
{% for measure in metric.measures %}
{% if measure.value is None %}
<td class="text-center">
<span class="text-muted">
N/A
</span>
</td>
{% if measure is None or measure.value is None %}
<td class="text-center">
<span class="text-muted" id="metric-hover" data-toggle="tooltip" data-placement="right" title="No data for this school and metric">
N/A
</span>
</td>
{% else %}
<td
class="text-center table-{% if request.user.profile.site == measure.school %}active{% else %}default{% endif %}">
Expand Down

0 comments on commit c17c746

Please sign in to comment.