%! from django.utils.translation import ugettext as _ %>
<%! from django.core.urlresolvers import reverse %>
% if reverifications["must_reverify"] or reverifications["pending"] or reverifications["denied"] or reverifications["approved"]:
${_("Re-verification now open for:")}
% if reverifications["must_reverify"]:
% for item in reverifications["must_reverify"]:
- ${_('Re-verify now:')} ${item.course_name}
% endfor
%endif
% if reverifications["pending"]:
% for item in reverifications["pending"]:
- ${_('Pending:')} ${item.course_name}
% endfor
%endif
% if reverifications["denied"]:
% for item in reverifications["denied"]:
- ${_('Denied:')} ${item.course_name}
% endfor
%endif
% if reverifications["approved"]:
% for item in reverifications["approved"]:
- ${_('Approved:')} ${item.course_name}
% endfor
%endif
%endif