Commit f91b9656 by ichuang

bugfix: allow multiple choice questions to display hints

parent b44ed806
...@@ -62,4 +62,7 @@ ...@@ -62,4 +62,7 @@
% if show_correctness == "never" and (value or status not in ['unsubmitted']): % if show_correctness == "never" and (value or status not in ['unsubmitted']):
<div class="capa_alert">${submitted_message}</div> <div class="capa_alert">${submitted_message}</div>
%endif %endif
% if msg:
<span class="message">${msg|n}</span>
% endif
</form> </form>
...@@ -64,5 +64,8 @@ ...@@ -64,5 +64,8 @@
% if show_correctness == "never" and (value or status not in ['unsubmitted']): % if show_correctness == "never" and (value or status not in ['unsubmitted']):
<div class="capa_alert">${submitted_message}</div> <div class="capa_alert">${submitted_message}</div>
%endif %endif
% if msg:
<span class="message">${msg|n}</span>
% endif
</form> </form>
</section> </section>
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