{%- extends "_layout.html" %} {%- block content %}
{{ _("Filter created") }}: {{ babel_format_datetime(item.createtime) }} ({{ _('%(delta)s ago', delta = babel_format_timedelta(current_datetime_utc - item.createtime)) }})
{{ _("Group") }}: | {%- if item.group is not none -%} {{ item.group.name }} {%- else -%} {{ _("Global filter (all groups)") }} {%- endif -%} |
---|---|
{{ _("Name") }}: | {{ item.name | default(_('<< unknown >>'), True) }} |
{{ _("Description") }}: | {{ item.description | default(_('<< unknown >>'), True) }} |
{{ _("Filtering:") }} | {{ _("summary and extra reports") if item.source_based else _('target reports') }} |
{{ _("Type") }}: | {{ item.type | default(_('<< unknown >>'), True) }} |
{{ _("Filter") }}: |
{{ item.filter | default(_('<< unknown >>'), True) }}
|
{{ _("Hits") }}: | {{ item.hits }} |
{{ _("Last hit") }}: | {% if item.last_hit %} {{ babel_format_datetime(item.last_hit) }} {% else %} --- {% endif %} |
{{ _("Valid from:") }} | {% if item.valid_from %} {{ babel_format_datetime(item.valid_from) }} {% else %} --- {% endif %} |
{{ _("Valid to:") }} | {% if item.valid_to %} {{ babel_format_datetime(item.valid_to) }} {% else %} --- {% endif %} |
{{ _("State") }}: | {{ macros_site.render_label_item_state(item.enabled, True) }} |
{{ filter_tree.__str__() }}
{{ _('Displaying only latest %(count)s changelogs', count = 100) }}
{%- else %} {%- call macros_site.render_alert('info', False) %} {{ _("This object does not have any changelog records at the moment.") }} {%- endcall %} {%- endif %}