{% extends "message.html" %} {% load i18n %} {% load permissions %} {% block tags %}warning{% endblock %} {% block message %} {% perm 'component.lock' object as user_can_lock_component %}
{% if user_can_lock_component %} {% trans "Unlock" %} {% endif %} {% if user.is_authenticated %} {% trans "Get notified when this project is unlocked again" %} {% endif %}
{% trans "The translation is temporarily closed for contributions due to maintenance, please come back later." %} {% with alerts=object.lock_alerts %} {% if alerts %}
{% trans "The translation was automatically locked due to following alerts:" %} {% for alert in alerts %} {{ alert }} {% endfor %} {% endif %} {% endwith %} {% endblock %}