## mako <%page expression_filter="h"/> <%inherit file="../main.html"/> <% from django.utils.translation import ugettext as _ from openedx.core.djangoapps.api_admin.models import ApiAccessRequest from openedx.core.djangolib.markup import Text, HTML %>
${Text(_('Your request to access the {platform_name} Course Catalog API is being processed. You will receive a message at the email address in your profile when processing is complete. You can also return to this page to see the status of your API access request. To learn more about the {platform_name} Course Catalog API, visit {link_start}our API documentation page{link_end}. For questions about using this API, visit our FAQ page or contact {api_support_email_link}.')).format( platform_name=Text(settings.PLATFORM_NAME), link_start=HTML('').format(Text(api_support_link)), link_end=HTML(''), api_support_email_link=HTML('{email}').format(email=Text(api_support_email)) )}
% endif ## TODO (ECOM-3946): Add status text for 'active' and 'denied', as well as API client creation.