{% extends "base.html" %} {% block title %}Registered Actions{% endblock %} {% block content %}

Registered actions

{% set current_tab = "actions" %} {% include "_permissions_debug_tabs.html" %}

This Datasette instance has registered {{ data|length }} action{{ data|length != 1 and "s" or "" }}. Actions are used by the permission system to control access to different features.

{% for action in data %} {% endfor %}
Name Abbr Description Resource Takes Parent Takes Child Also Requires
{{ action.name }} {% if action.abbr %}{{ action.abbr }}{% endif %} {{ action.description or "" }} {% if action.resource_class %}{{ action.resource_class }}{% endif %} {% if action.takes_parent %}✓{% endif %} {% if action.takes_child %}✓{% endif %} {% if action.also_requires %}{{ action.also_requires }}{% endif %}
{% endblock %}