{% from "_custom_select.html" import custom_select %}
{% set pub_label = "Public" ~ (" (locked by moderation)" if (repo and repo.moderation_locked) else "") %}
{{ custom_select(id="repo_visibility", name="repo_visibility", options=[{"value": "public", "label": pub_label}, {"value": "private", "label": "Private"}], selected_value=repo_visibility|default("public"), selected_label=pub_label if repo_visibility|default("public")=="public" else "Private", mode="form", class="w-full", disabled=repo and repo.moderation_locked) }}
{% if repo and repo.moderation_locked %}
This repository is under moderation. Resolve the report with admins to make it public again.
{% endif %}