Allow fetching bank details from currencies page
This commit is contained in:
parent
35ffa036ae
commit
21c5150f6f
|
@ -99,6 +99,11 @@ urlpatterns = [
|
|||
aggregators.RequestBankFetch.as_view(),
|
||||
name="bank_fetch",
|
||||
),
|
||||
path(
|
||||
"ops/bank_fetch/",
|
||||
aggregators.RequestBankFetch.as_view(),
|
||||
name="bank_fetch",
|
||||
),
|
||||
# Bank details by currency
|
||||
path(
|
||||
"banks/<str:type>/details/",
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue