Allow fetching bank details from currencies page
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
from django.contrib.auth.mixins import LoginRequiredMixin
|
||||
from django.urls import reverse
|
||||
from mixins.views import ObjectList
|
||||
from two_factor.views.mixins import OTPRequiredMixin
|
||||
|
||||
@@ -24,6 +25,19 @@ class BanksCurrencies(LoginRequiredMixin, OTPRequiredMixin, ObjectList):
|
||||
list_url_name = "currencies"
|
||||
list_url_args = ["type"]
|
||||
|
||||
def get_context_data(self):
|
||||
context = super().get_context_data()
|
||||
self.extra_buttons = [
|
||||
{
|
||||
"url": reverse("bank_fetch"),
|
||||
"action": "refresh",
|
||||
"method": "get",
|
||||
"label": "Fetch account details",
|
||||
"icon": "fa-solid fa-refresh",
|
||||
},
|
||||
]
|
||||
return context
|
||||
|
||||
def get_queryset(self, **kwargs):
|
||||
aggregators = Aggregator.objects.filter(user=self.request.user, enabled=True)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user