<%page expression_filter="h"/> <%! from openedx.core.djangolib.markup import HTML, Text from django.utils.translation import ugettext as _ %> <%inherit file="../main.html" /> <%namespace name='static' file='../static_content.html'/> <%block name="pagetitle">${Text(_("Unsubscribe"))}

<%block name="pageheader">${Text(_("Unsubscribe"))}

<%block name="pagecontent"> %if unsubscribe: ${Text(_("You have successfully unsubscribed from {org} {course} emails.")).format( org=HTML("{}'s").format(course.display_org_with_default), course=HTML("{}").format(course.display_name_with_default) )} %else: ${Text(_("You have not been unsubscribed from {org} {course} emails.")).format( org=HTML("{}'s").format(course.display_org_with_default), course=HTML("{}").format(course.display_name_with_default) )} %endif

${Text(_("{link_start}Return to edX.org{link_end}")).format( link_start=HTML(" "), link_end=HTML(" "), )}