Changeset 3f7b105bc6d036a16a13373a01da10f691e34ec4
- 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:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r7d34d4f
|
r3f7b105
|
|
| 42 | 42 | </div> |
| 43 | 43 | <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 %} |
| | 45 | Frame {{ 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 %} |
| 54 | 50 | </p> |
| 55 | 51 | {% endblock %} |