Changeset 3f7b105bc6d036a16a13373a01da10f691e34ec4

Show
Ignore:
Timestamp:
07/17/10 16:53:50 (7 weeks ago)
Author:
Jim Garrison <jim@…>
Children:
0f2016100c23792984b8cda9f2eccfe225a53dec
Parents:
7d34d4ffacf09610371600a457c2d8f42536c47d
git-committer:
Jim Garrison <jim@jimgarrison.org> / 2010-07-17T13:53:50Z-0700
Message:

discovered {% blocktrans with %}

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ductus/modules/picture_choice/templates/picture_choice/lesson.html

    r7d34d4f r3f7b105  
    4242</div> 
    4343<p class="pcl_frame_count"> 
    44 {% with '<span id="frame_number">1</span>' as current_frame %} 
    45 {% with frames|length as number_of_frames %} 
    46 {% blocktrans %}Frame {{ current_frame }} of {{ number_of_frames }}{% endblocktrans %} 
    47 {% endwith %} 
    48 {% endwith %} 
    49 {% with '<span id="pcl_correct_count">0</span>' as correct_count %} 
    50 {% with '<span id="pcl_incorrect_count">0</span>' as incorrect_count %} 
    51 {% blocktrans %}({{ correct_count }} correct, {{ incorrect_count }} incorrect).{% endblocktrans %} 
    52 {% endwith %} 
    53 {% endwith %} 
     44{% blocktrans with '<span id="frame_number">1</span>' as current_frame and frames|length as number_of_frames %} 
     45Frame {{ current_frame }} of {{ number_of_frames }} 
     46{% endblocktrans %} 
     47{% blocktrans with '<span id="pcl_correct_count">0</span>' as correct_count and '<span id="pcl_incorrect_count">0</span>' as incorrect_count %} 
     48({{ correct_count }} correct, {{ incorrect_count }} incorrect). 
     49{% endblocktrans %} 
    5450</p> 
    5551{% endblock %}