{% extends "base.html" %} {% load i18n static %} {% block title %}{{ _("Payments") }}{% endblock title %} {% block content %}

{% trans "Payments" %}

{% trans "Add Payment" %}
{% for journal in journals %} {% if journal.ledger.invoicemodel %} {% else %} {% endif %} {% empty %} {% endfor %}
# {% trans "Payment Number" %} {% trans "Invoice" %} {% trans "Timestamp" %} {% trans "Description" %} {% trans "Actions" %}
{{ forloop.counter }} {{ journal.je_number }}{{ journal.ledger.invoicemodel }}{{ journal.timestamp }} {{ journal.description }} {% trans "View Tranactions" %}
{% trans "No Payments Found" %}
{% endblock %}