{% extends "message.html" %}
{% load i18n %}
{% block tags %}warning{% endblock %}
{% block message %}
{# user_can_view_billing is defined in snippets/project/state.html #}
{% if user_can_view_billing %}
{# project admin can request approval #}
{% trans "Request approval for Libre hosting" %}
{% trans "This project is in a trial period and is publicly accessible. Post an announcement and/or lock it if you don’t want contributions until you finish the setup." %}
{% else %}
{# users are warned that the setup is not yet completed #}
{% trans "This project is in a trial period, be cautious while contributing. Setup can still change before being approved as a libre project." %}
{% endif %}
{% endblock %}