{%- extends "_layout.html" %} {%- block css %} {{ super() }} {%- endblock css %} {%- block content %}
{{ gettext('Group') }} | {{ gettext('Name') }} | {{ gettext('Type') }} | {{ gettext('Description') }} | {{ gettext('Hits') }} | {{ get_fa_icon('actions') }} {{ gettext('Actions') }} |
---|---|---|---|---|---|
{{ item.group.name }} | {{ item.name | default(gettext('<< unknown >>'), True) }} | {{ item.type | default(gettext('<< unknown >>'), True) }} | {{ item.description | default(gettext('<< unknown >>'), True) | truncate(50) }} | {{ item.hits }} |
{{ get_fa_icon('view') }}
{{ get_fa_icon('edit') }}
{%- if item.enabled %}
{{ get_fa_icon('lock') }}
{%- else %}
{{ get_fa_icon('unlock') }}
{%- endif %}
{{ get_fa_icon('trash') }}
|