Skip to content

Commit

Permalink
workaround for #59
Browse files Browse the repository at this point in the history
  • Loading branch information
aozalevsky committed Mar 12, 2024
1 parent c26fc1b commit bfa02c4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions templates/model_quality.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,15 @@ <h5 class= ex2 align= center>
</h5>
<p class="ex2"></p>
{% if molp_a|length > 1 %}
<i>There are {{ angle|int }} angle outliers in this entry ({{ "%.1f"|format(angle / total_angles * 100) }}% of all angles). A summary is provided below, and a detailed list of outliers can be found <a href=../csv/angle_outliers.csv>here</a>.
</i>
{% if total_angles|int > 1 %}
<i>
There are {{ angle|int }} angle outliers in this entry ({{ "%.1f"|format(angle / total_angles * 100) }}% of all angles). A summary is provided below, and a detailed list of outliers can be found <a href=../csv/angle_outliers.csv>here</a>.
</i>
{% else %}
<i>
There are {{ angle|int }} angle outliers in this entry. A summary is provided below, and a detailed list of outliers can be found <a href=../csv/angle_outliers.csv>here</a>.
</i>
{% endif %}
<p class="ex2"></p>
{{ write_table(molp_a) }}
<p class="ex2"></p>
Expand Down

0 comments on commit bfa02c4

Please sign in to comment.