Files
edx-platform/lms/templates/support/entitlement.html
2023-08-16 17:07:23 +05:00

35 lines
755 B
HTML

<%page expression_filter="h"/>
<%!
from django.utils.translation import gettext as _
from openedx.core.djangolib.js_utils import js_escaped_string
%>
## Override the default styles_version to use Bootstrap
<%! main_css = "css/bootstrap/lms-main.css" %>
<%namespace name='static' file='../static_content.html'/>
<%inherit file="../main.html" />
<%block name="js_extra">
</%block>
<%block name="pagetitle">
${_("Entitlements")}
</%block>
<%block name="content">
<section class="container outside-app">
${static.renderReact(
component="EntitlementSupportPage",
id="entitlement-support-page",
props={
'ecommerceUrl': ecommerce_url,
'supportActions': support_actions
}
)
}
</section>
</%block>