{% 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 %}

The {{ database }} database is currently public, 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 %}