|
{% if change.Status == 'added' %}
{% endif %}
{% if change.Status == 'modified' %}
{% endif %}
{% if change.Status == 'deleted' %}
{% endif %}
|
{{ change.LatestVersion.ShortPath }}
|
{% for class in change.LatestVersion.Stmts.StmtClass %}
{{ class.Stmts.Analyze.Maintainability.MaintainabilityIndex|floatformat:0 }}
{% endfor %}
|
{% if detailled == true %}
{{ change.LatestVersion.Stmts.Analyze.Complexity.Cyclomatic|floatformat:0 }}
{% if change.Status == 'modified' %}
{% include 'componentComparaisonBadge.html' with comparaisonMode='lowIsBetter' diff=change.Comparaison.AverageCyclomaticComplexityPerMethod round=0 %}
{% endif %}
|
{{ change.LatestVersion.LinesOfCode.LinesOfCode }}
{% if change.Status == 'modified' %}
{% include 'componentComparaisonBadge.html' with comparaisonMode='dontCare' diff=change.Comparaison.Loc round=0 %}
{% endif %}
|
{{ change.LatestVersion.Stmts.Analyze.Coupling.Efferent }}
{% if change.Status == 'modified' %}
{% include 'componentComparaisonBadge.html' with comparaisonMode='dontCare' diff=change.Comparaison.AverageEfferentCoupling round=0 %}
{% endif %}
|
{{ change.LatestVersion.Stmts.Analyze.Coupling.Afferent }}
{% if change.Status == 'modified' %}
{% include 'componentComparaisonBadge.html' with comparaisonMode='dontCare' diff=change.Comparaison.AverageAfferentCoupling round=0 %}
{% endif %}
|
{% endif %}
{% endfor %}