from django.shortcuts import render, get_object_or_404 from osinacore.models import * from billing.models import * from osinacore.decorators import * @staff_login_required def edit_payment_modal(request): context = { } return render(request, 'edit_templates/edit-payment-modal.html', context)