You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/templates/ac_mail.html

11 lines
464 B
HTML

{% extends "layout/mail.html" %}
{% block title %}{{ _('P{0} - {1} Accepted!').format(pdoc['_id'], pdoc['title']) }}{% endblock %}
{% block content %}
<p>{{ _('Congratulations! Your submission is accepted.') }}</p>
<p>{{ _('Problem') }}: <a href="{{ url_prefix }}{{ reverse_url('problem_detail', domain_id=pdoc['domain_id'], pid=pdoc['_id']) }}">P{{ pdoc['_id'] }} {{ pdoc['title'] }}</a></p>
<p>{{ _('Code') }}:</p>
<pre>
{{ rdoc['code'] }}
</pre>
{% endblock %}