{% extends 'base.html' %} {% load bootstrap %} {% block content %}

File category {{ object }}

{% if object.file_paths %} {% endif %} {% if object.exclude_paths %} {% endif %} {% if object.file_paths_queries %} {% endif %}
Attribute Value
Name {{ object.name }}
Slug {{ object.slug }}
Description {{ object.description|default:"-"|linebreaksbr }}
File path{{ object.file_paths|length|pluralize }}
{{ object.file_paths|join:"
" }}
Exclude path{{ object.exclude_paths|length|pluralize }}
{{ object.exclude_paths|join:"
" }}
File paths quer{{ object.file_paths_queries|length|pluralize:"y,ies" }}
{{ object.file_paths_queries|join:"
" }}
Access monitoring {{ object.access_monitoring|yesno }}
Created at
{{ object.created_at|date:'r' }}
Updated at
{{ object.updated_at|date:'r' }}

{% if perms.osquery.change_filecategory %} Update {% endif %} {% if perms.osquery.delete_filecategory %} Delete {% endif %}

{% if perms.osquery.view_configuration %}

Used in {{ configuration_count }} configuration{{ configuration_count|pluralize }}

{% if configurations %}
{% for configuration in configurations %} {% endfor %}
Name
{{ configuration }}
{% endif %} {% endif %} {% endblock %}