模版2

parent f73b3277
...@@ -2623,25 +2623,43 @@ ...@@ -2623,25 +2623,43 @@
<td> <td>
<span class="rcc_index">{{correlation[0]}}</span> <span class="rcc_index">{{correlation[0]}}</span>
</td> </td>
{% elif -1 <= correlation[2][i] < -0.5 and i < correlation[0] - 1 %}
<td>{{correlation[2][i]}}</td>
{% elif -1 <= correlation[2][i] < -0.5 %} {% elif -1 <= correlation[2][i] < -0.5 %}
<td class="level_color6">{{correlation[2][i]}}</td> <td class="level_color6">{{correlation[2][i]}}</td>
{% elif -0.5 <= correlation[2][i] < -0.25 and i < correlation[0] - 1 %}
<td>{{correlation[2][i]}}</td>
{% elif -0.5 <= correlation[2][i] < -0.25 %} {% elif -0.5 <= correlation[2][i] < -0.25 %}
<td class="level_color6">{{correlation[2][i]}}</td>
{% elif -0.25 <= correlation[2][i] < 0 %}
<td class="level_color5">{{correlation[2][i]}}</td> <td class="level_color5">{{correlation[2][i]}}</td>
{% elif 0 <= correlation[2][i] < 0.25 %} {% elif -0.25 <= correlation[2][i] < 0 and i < correlation[0] - 1 %}
<td>{{correlation[2][i]}}</td>
{% elif -0.25 <= correlation[2][i] < 0 %}
<td class="level_color4">{{correlation[2][i]}}</td> <td class="level_color4">{{correlation[2][i]}}</td>
{% elif 0.25 <= correlation[2][i] < 0.5 %} {% elif 0 <= correlation[2][i] < 0.25 and i < correlation[0] - 1 %}
<td>{{correlation[2][i]}}</td>
{% elif 0 <= correlation[2][i] < 0.25 %}
<td class="level_color3">{{correlation[2][i]}}</td> <td class="level_color3">{{correlation[2][i]}}</td>
{% elif 0.5 <= correlation[2][i] < 0.75 %} {% elif 0.25 <= correlation[2][i] < 0.5 and i < correlation[0] - 1 %}
<td>{{correlation[2][i]}}</td>
{% elif 0.25 <= correlation[2][i] < 0.5 %}
<td class="level_color2">{{correlation[2][i]}}</td> <td class="level_color2">{{correlation[2][i]}}</td>
{% elif 0.75 <= correlation[2][i] <= 1 %} {% elif 0.5 <= correlation[2][i] <= 1 and i < correlation[0] - 1 %}
<td>{{correlation[2][i]}}</td>
{% elif 0.5 <= correlation[2][i] <= 1 %}
<td class="level_color1">{{correlation[2][i]}}</td> <td class="level_color1">{{correlation[2][i]}}</td>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
</tr> </tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment