You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
309 B
Python
13 lines
309 B
Python
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) |