total_charge.html 1.12 KB
{% extends "base_page.html" %}
{% block content %}

  <!-- Invisible span to define wich ul and a in the navbar are actived -->
  <span id="nav_actived" style="display: none">cds,total_charge</span>

  <table class="table_datatables table table-hover">
    <thead>
    <tr>
      {% for h in total_charges[0] %}
        <th scope="col">{{ h }}</th>
      {% endfor %}
    </tr>
    </thead>
    <tbody>
    {% for h in total_charges[1:] %}
      <tr>
        <td><a href="{{ url_for('main.agent', agent_id=h[0]) }}">{{ h[1] }}</a></td>
        {% for i in h[2:] %}
          {% if i is number %}
            {% set unit = ' %' %}
            {% if i == 0 %}
              {% set cell_style = 'table-warning' %}
            {% elif i <= 75 %}
              {% set cell_style = 'table-info' %}
            {% elif i <= 100 %}
              {% set cell_style = 'table-success' %}
            {% else %}
              {% set cell_style = 'table-danger' %}
            {% endif %}
          {% endif %}
          <td class={{ cell_style }}>{{ i }}{{ unit }}</td>
        {% endfor %}
      </tr>
    {% endfor %}
    </tbody>
  </table>
{% endblock %}