Problem with code of payment-calendar

There is a bug in the payment-calendar code.

Example code:
                {% for service_id, service in service_detail %}
                    {% for key, charge in service %}
                        {% if key == 'credit' %}
Change to:
                {% for service_id, service in service_detail %}
                    **{% for key, inhoud in service %}**
                        {% for id, charge in inhoud %}
                            {% if key == 'credit' %}

And of course an extra forend added

                                    </tr>
                                {% endif %}
                        {% endfor %}
                    {% endfor %}
                **{% endfor %}**
			
            {% endfor %}
			
            <tr>
				<td colspan="3" ><b> {{ date|date('M - Y') }} : </td>
				<td  style="text-align: right">{{ App.formatMoney(total) }}   </b></td>
				<td> </td>
			</tr>
        </table>
    {% endfor %}

Now the output is correct.
Mart Dirks, ITeeCo, NL

Thank you! We will check this code.