Skip to content

Commit

Permalink
Fix instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnMwashuma committed Aug 12, 2024
1 parent dd71d74 commit 715d434
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions tally_ho/apps/tally/templates/data_entry/enter_results_view.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,29 +59,29 @@ <h2>{% trans 'Reconciliation section' %}</h2>
<td width="30%" class="blue-bg"><input class="blue-bg" tabindex="110" autocomplete="off" class="required form-control" id="id_number_unstamped_ballots" name="number_unstamped_ballots" oncopy="return false;" ondrag="return false;" ondrop="return false;" onpaste="return false;" type="text"/></td>
</tr>
<tr>
<th><span class="bignum">11</span></th>
<th><span class="bignum">10</span></th>
<th><label for="id_number_invalid_votes">
{% trans 'Number of invalid votes (including the blanks):' %}</label></th>
<td class="blue-bg"><input class="blue-bg" tabindex="120" autocomplete="off" class="required form-control" id="id_number_invalid_votes" name="number_invalid_votes" oncopy="return false;" ondrag="return false;" ondrop="return false;" onpaste="return false;" type="text"/></td>
</tr>
<tr>
<th><span class="bignum">12</span></th>
<th><span class="bignum">11</span></th>
<th><label for="id_number_valid_votes">
{% trans 'Number of valid votes:' %}</label></th>
<td class="blue-bg"><input class="blue-bg" tabindex="130" autocomplete="off" class="required form-control" id="id_number_valid_votes" name="number_valid_votes" oncopy="return false;" ondrag="return false;" ondrop="return false;" onpaste="return false;" type="text"/></td>
</tr>
<tr>
<th><span class="bignum">13</span></th>
<th><span class="bignum">12</span></th>
<th><label for="id_number_sorted_and_counted">
{% trans 'Total number of the sorted and counted ballots:' %}</label></th>
<td class="blue-bg"><input tabindex="140" class="blue-bg" autocomplete="off" class="required form-control" id="id_number_sorted_and_counted" name="number_sorted_and_counted" oncopy="return false;" ondrag="return false;" ondrop="return false;" onpaste="return false;" type="text"/><br/></td>
</tr>
<tr>
<td colspan="3" class="blue-bg">
{% trans 'If the figure in the field 13 does not equal the one in field 7, the totals of the fields 9, 10, 11 and 12 should be recounted.' %}
{% trans 'If the figure in the field 12 does not equal the one in field 7, the totals of the fields 9, 10 and 11 should be recounted.' %}
<br/>
<br/>
{% trans 'If after recounting, the difference persists, the ballots of the fields 9, 10, 11 and 12 should be recounted as in the manual.' %}
{% trans 'If after recounting, the difference persists, the ballots of the fields 9, 10 and 11 should be recounted as in the manual.' %}
<br/>
<br/>
{% trans 'If the difference persists, write a note in the field at the bottom of the form to explain the action taken prior to proceeding to the next step.' %}
Expand Down Expand Up @@ -111,7 +111,7 @@ <h2>{% trans 'Reconciliation section' %}</h2>
<th width="10%"><span class="bignum">2</span></th>
<th width="60%"><label for="id_number_signatures_in_vr">
<span class="helptext">
{% trans 'Number of signatures in the VR:' %}</span></label></th>
{% trans 'Number of cards in the VR:' %}</span></label></th>
<td width="30%"><input tabindex="40" autocomplete="off" class="required form-control" id="id_number_signatures_in_vr" name="number_signatures_in_vr" oncopy="return false;" ondrag="return false;" ondrop="return false;" onpaste="return false;" type="text"/></td>
</tr>
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,29 +42,29 @@ <h2>{% trans 'Reconciliation Section' %}</h2>
<td class="blue-bg" width="30%">{{ form.number_unstamped_ballots.data }}</td>
</tr>
<tr>
<th><span class="bignum">11</span></th>
<th><span class="bignum">10</span></th>
<th><label for="id_number_invalid_votes">
{% trans 'Number of invalid votes (including the blanks):' %}</label></th>
<td class="blue-bg">{{ form.number_invalid_votes.data }}</td>
</tr>
<tr>
<th><span class="bignum">12</span></th>
<th><span class="bignum">11</span></th>
<th><label for="id_number_valid_votes">
{% trans 'Number of valid votes:' %}</label></th>
<td class="blue-bg">{{ form.number_valid_votes.data }}</td>
</tr>
<tr>
<th><span class="bignum">13</span></th>
<th><span class="bignum">12</span></th>
<th><label for="id_number_sorted_and_counted">
{% trans 'Total number of the sorted and counted ballots:' %}</label></th>
<td class="blue-bg">{{ form.number_sorted_and_counted.data }}</td>
</tr>
<tr>
<td colspan="3" class="blue-bg">
{% trans 'If the figure in the field 13 does not equal the one in field 7, the totals of the fields 9, 10, 11 and 12 should be recounted.' %}
{% trans 'If the figure in the field 12 does not equal the one in field 7, the totals of the fields 9, 10 and 11 should be recounted.' %}
<br/>
<br/>
{% trans 'If after recounting, the difference persists, the ballots of the fields 9, 10, 11 and 12 should be recounted as in the manual.' %}
{% trans 'If after recounting, the difference persists, the ballots of the fields 9, 10 and 11 should be recounted as in the manual.' %}
<br/>
<br/>
{% trans 'If the difference persists, write a note in the field at the bottom of the form to explain the action taken prior to proceeding to the next step.' %}
Expand Down Expand Up @@ -94,7 +94,7 @@ <h2>{% trans 'Reconciliation Section' %}</h2>
<th width="10%"><span class="bignum">2</span></th>
<th width="60%"><label for="id_number_signatures_in_vr">
<span class="helptext">
{% trans 'Number of signatures in the VR:' %}</span></label></th>
{% trans 'Number of cards in the VR:' %}</span></label></th>
<td width="30%">{{ form.number_signatures_in_vr.data }}</td>
</tr>
<tr>
Expand Down

0 comments on commit 715d434

Please sign in to comment.