{# -*- engine: jinja -*- #}
{% extends "base.html" %}
{% block summary %}
  
    
      | Directory: | {{info.get_directory()}} | 
    
      | Date: | {{info.date}} | 
    
      | Legend: | low: >= 0%
        {% if COVERAGE_MED != COVERAGE_HIGH %}
        medium: >= {{COVERAGE_MED}}%
        {% endif %}
        {% if COVERAGE_HIGH < 100 %}
        high: >= {{COVERAGE_HIGH}}%
        {% else %}
        high: = 100%
        {% endif %} | 
  
 
  
    
      |  | Exec | Total | Coverage | 
    
      | Lines: | {{info.lines.exec}} | {{info.lines.total}} | {{info.lines.coverage}}% | 
    
      | Branches: | {{info.branches.exec}} | {{info.branches.total}} | {{info.branches.coverage}}% | 
  
 
{% endblock %}
{% block content %}
  
  
  
  
    | File | Lines | Branches | 
  {% for row in info.files %}
  
    | {% if row.link is not none %}
      {{row.filename}}
      {% else %}
      {{row.filename}}
      {% endif %} | {{row.lines.coverage}} | {{row.lines.coverage}}% | {{row.lines.exec}} / {{row.lines.total}} | {{row.branches.coverage}}% | {{row.branches.exec}} / {{row.branches.total}} | 
  {% endfor %}
{% endblock %}