{% extends "base.html" %} {% block title %}Registered Actions{% endblock %} {% block content %}
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.
| 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 %} |