Fixing bug 2195 - Notifications about points, from and to in incorrect order

remotes/origin/enhancement/email-actions
Alejandro Alonso 2015-02-16 08:56:13 +01:00
parent 3e4e217ec1
commit 147ebbdbbd
1 changed files with 2 additions and 2 deletions

View File

@ -20,13 +20,13 @@
</td> </td>
<td valign="top" class="update-row-from"> <td valign="top" class="update-row-from">
<span>{{ _("from") }}</span><br> <span>{{ _("from") }}</span><br>
<strong>{{ points.1 }}</strong> <strong>{{ points.0 }}</strong>
</td> </td>
</tr> </tr>
<tr> <tr>
<td valign="top"> <td valign="top">
<span>{{ _("to") }}</span><br> <span>{{ _("to") }}</span><br>
<strong>{{ points.0 }}</strong> <strong>{{ points.1 }}</strong>
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}