{% load helpers %} {% load i18n %}
| {% trans "Source" %} | {{ change_explainability.source }} |
|---|---|
| {% trans "Branch" %} | {{ change_explainability.branch|placeholder }} |
| {% trans "Changes Scanned" %} | {{ change_explainability.sampled_change_count }} / {{ change_explainability.total_change_count }} {% if change_explainability.truncated %} {% trans "Truncated" %} {% endif %} |
| {% trans "Actions" %} | {% for action, count in change_explainability.action_counts.items %} {{ action }} {{ count }} {% empty %} {{ ""|placeholder }} {% endfor %} |
| {% trans "Top Models" %} | {% for model, count in change_explainability.model_counts.items %} {{ model }} {{ count }} {% empty %} {{ ""|placeholder }} {% endfor %} |
| {% trans "Top Fields" %} | {% for field in change_explainability.top_changed_fields %} {{ field.field }} {{ field.count }} {% empty %} {{ ""|placeholder }} {% endfor %} |