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

{% trans "Payments" %}

{% comment %} {% trans "Add Payment" %} {% endcomment %}
{% for journal in page_obj %} {% if journal.ledger.invoicemodel %} {% elif journal.ledger.billmodel %} {% else %} {% endif %} {% empty %} {% endfor %}
# {% trans "Payment Number" %} {% trans "Invoice" %} {% trans "Timestamp" %} {% trans "Description" %} {% trans "Actions" %}
{{ forloop.counter }} {{ journal.je_number }} {{ journal.ledger.invoicemodel }} {{ journal.ledger.billmodel }} {{ journal.timestamp }} {{ journal.description }} {% trans "View Tranactions"|capfirst %}
{% trans "No Payments Found" %}
{% if is_paginated %} {% include 'partials/pagination.html' %} {% endif %}
{% endblock %}