Skip to content
This repository has been archived by the owner on Aug 18, 2020. It is now read-only.

Commit

Permalink
Added notes to right and wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
hbarnardt committed Jun 30, 2015
1 parent d74bbfa commit 57dc16b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions oneplus/templates/learn/event_right.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ <h1 class="green-front" style="padding-top: 15px">Correct Answer:</h1>

<h1 class="green-front" style="padding-top: 15px">Solution</h1>
<p>{{ question.answer_content | format_content }}</p>

{% if question.notes %}
<h1 class="green-front" style="padding-top: 15px">Addition Notes</h1>
<p>{{ question.notes | format_content }}</p>
{% endif %}
</div>
{% endautoescape %}
{% endblock %}
5 changes: 5 additions & 0 deletions oneplus/templates/learn/event_wrong.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ <h1 class="green-front" style="padding-top: 15px">Correct Answer:</h1>

<h1 class="green-front" style="padding-top: 15px">Solution</h1>
<p>{{ question.answer_content | format_content}}</p>

{% if question.notes %}
<h1 class="green-front" style="padding-top: 15px">Addition Notes</h1>
<p>{{ question.notes | format_content }}</p>
{% endif %}
</div>
{% endautoescape %}
{% endblock %}
5 changes: 5 additions & 0 deletions oneplus/templates/learn/right.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ <h1 class="green-front" style="padding-top: 15px">Correct Answer:</h1>

<h1 class="green-front" style="padding-top: 15px">Solution</h1>
<p>{{ question.answer_content | format_content }}</p>

{% if question.notes %}
<h1 class="green-front" style="padding-top: 15px">Addition Notes</h1>
<p>{{ question.notes | format_content }}</p>
{% endif %}
</div>
{% endautoescape %}

Expand Down
5 changes: 5 additions & 0 deletions oneplus/templates/learn/wrong.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ <h1 class="green-front" style="padding-top: 15px">Correct Answer:</h1>

<h1 class="green-front" style="padding-top: 15px">Solution</h1>
<p>{{ question.answer_content | format_content}}</p>

{% if question.notes %}
<h1 class="green-front" style="padding-top: 15px">Addition Notes</h1>
<p>{{ question.notes | format_content }}</p>
{% endif %}
</div>
{% endautoescape %}

Expand Down

0 comments on commit 57dc16b

Please sign in to comment.