17 lines
661 B
HTML
17 lines
661 B
HTML
<%page expression_filter="h"/>
|
|
<%inherit file="accomplishment-base.html" />
|
|
<%! from django.utils.translation import gettext as _ %>
|
|
|
|
% if user.is_authenticated and user.id == int(accomplishment_user_id):
|
|
<%include file="_accomplishment-banner.html" />
|
|
% endif
|
|
<%include file="_accomplishment-introduction.html" />
|
|
|
|
<%include file="_accomplishment-rendering.html" />
|
|
<div class="wrapper-about">
|
|
<aside role="complementary" class="about" aria-label=${_("About {platform_name} Certificates").format(platform_name=settings.PLATFORM_NAME)}>
|
|
<%include file="_about-edx.html" />
|
|
<%include file="_about-accomplishments.html" />
|
|
</aside>
|
|
</div>
|