This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
facturier/facturier/templatetags/payment.py

8 lines
179 B
Python

from django import template
register = template.Library()
def payment_url(invoice_id, invoice_hash):
return reverse('transaction', args=('tipi', invoice_id, invoice_hash))