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

Automatic table construction {{ object }}

Attribute Value
Name {{ object.name }}
Description {{ object.description|default:"-"|linebreaksbr }}
Table name {{ object.table_name }}
Query {{ object.get_query_html|safe }}
Path
{{ object.path }}
Column{{ object.columns|length|pluralize }}
{{ object.columns|join:"
" }}
Platform{{ object.platforms|length|pluralize }} {{ object.platforms|join:", "|default:"-" }}
Created at
{{ object.created_at|date:'r' }}
Updated at
{{ object.updated_at|date:'r' }}

{% if perms.osquery.change_automatictableconstruction %} Update {% endif %} {% if perms.osquery.delete_automatictableconstruction %} 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 %}