{% load i18n %}

{% trans "Metric" %}


{% trans "ID" %}
{{ metric.id }}
{% trans "Creator" %}
{{ metric.creator }}
{% trans "Created by user id" %}
{{ metric.created_by_user_id }}
{% trans "Created by project id" %}
{{ metric.created_by_project_id }}
{% trans "Unit" %}
{{ metric.unit }}
{% trans "Description" %}
{{ metric.description }}

{% trans "Archive Policy" %}


{% trans "Aggregation Methods" %}
{% for aggr in metric.archive_policy.aggregation_methods %} {{ aggr }} {% endfor %}
{% trans "Granularity" %}
{% for def in metric.archive_policy.definition %} {{ def.granularity }} {% endfor %}
{% trans "Points" %}
{% for def in metric.archive_policy.definition %} {{ def.points }} {% endfor %}
{% trans "Timespan" %}
{% for def in metric.archive_policy.definition %} {{ def.timespan }} {% endfor %}
{% trans "Name" %}
{{ metric.archive_policy.name }}
{% trans "Back Window" %}
{{ metric.archive_policy.back_window }}

{% trans "Resource" %}


{% trans "Name" %}
{{ metric.resource.name }}
{% trans "ID" %}
{{ metric.resource.id }}
{% trans "Type" %}
{{ metric.resource.type }}
{% trans "Revision Start" %}
{{ metric.resource.revision_start }}
{% trans "Revision End" %}
{{ metric.resource.revision_end }}
{% trans "Creator" %}
{{ metric.resource.creator }}
{% trans "Created by user id" %}
{{ metric.resource.created_by_user_id }}
{% trans "Created by project id" %}
{{ metric.resource.created_by_project_id }}
{% trans "Started At" %}
{{ metric.resource.started_at }}
{% trans "Ended At" %}
{{ metric.resource.ended_at }}