Commit 764cd862 by Ned Batchelder

Mako comments have to be double-hash, or they are included on the page.

parent 628eb866
......@@ -7,7 +7,7 @@ from django.utils.translation import ugettext as _
from django.template.defaultfilters import escapejs
%>
<!-- TODO decode course # from context_course into title -->
## TODO decode course # from context_course into title.
<%block name="title">${_("Course Updates")}</%block>
<%block name="bodyclass">is-signedin course course-info updates view-updates</%block>
......
......@@ -189,11 +189,11 @@ textarea {
%else:
<div class="page-status">
%if not course_id:
# If viewing all logs there are no logs available, let the user know
## If viewing all logs there are no logs available, let the user know.
## Translators: git is a version-control system; see http://git-scm.com/about
${_('No git import logs have been recorded.')}
%else:
# If viewing a single course and there are no logs available, let the user know
## If viewing a single course and there are no logs available, let the user know.
## Translators: git is a version-control system; see http://git-scm.com/about
${_('No git import logs have been recorded for this course.')}
%endif
......
......@@ -76,9 +76,9 @@ from verify_student.views import PayAndVerifyView
data-verification-good-until='${verification_good_until}'
data-capture-sound='${capture_sound}'
# If we reached the verification flow from an in-course checkpoint,
# then pass the checkpoint location in so that we can associate
# the attempt with the checkpoint on submission.
## If we reached the verification flow from an in-course checkpoint,
## then pass the checkpoint location in so that we can associate
## the attempt with the checkpoint on submission.
% if checkpoint_location is not None:
data-checkpoint-location='${checkpoint_location}'
% endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment