{% extends "base.html" %} {% block title %}Change privacy for {{ noun }} {{ table }} in {{ database }}{% endblock %} {% block crumbs %} {{ crumbs.nav(request=request, database=database, table=table) }} {% endblock %} {% block content %}

Edit {{ noun }} privacy: {{ database }}/{{ table }}

{% if database_is_public_via_plugin %}

The {{ database }} database has been made public, so all tables within it are automatically public. You cannot change the visibility of this {{ noun }} while the database is public.

{% elif database_is_public_via_config %}

The {{ database }} database is publicly accessible via configuration, so you cannot change the visibility of this {{ noun }}.

{% else %}

{{ noun|title }} is currently {% if is_private %}private{% else %}public{% endif %}

{% endif %} {% include "_public_audit_log.html" %} {% endblock %}