{% extends "::base.html.twig" %} {% block title "Accept An Invitation" %} {% block content_without_navbar %}
{% if invitation.isExpired() %} {{ include(alert_tpl, {'title': 'Invitation Expired!', 'msg': 'This invitation is expired. Please ask your ' ~ main_title ~ ' Administrator to renew it.'}, with_context = false) }} {% elseif invitation.getStatus() == constant('Alsuite\\OrganizationBundle\\Entity\\Invitation::PROFILE_CREATED') %} {% set msg = ["This invitation has already been accepted and a user profile created against it.", "\nIf you are not the one who accepted the invitation, please inform your", main_title, "Administrator"]|join(' ') %} {{ include(alert_tpl, {'title': 'Invitation Already Accepted!', 'msg': msg }, with_context = false) }} {% else %} {{ wrap.form(form, 'Accept The Invitation') }} {% endif %}
{% endblock %}