mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 16:36:45 +00:00
19 lines
337 B
Python
19 lines
337 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
URLs for Bank list app
|
|
"""
|
|
|
|
from django.urls import re_path
|
|
from .views import BankListView #, ExportCsvView
|
|
|
|
urlpatterns = [
|
|
re_path(r'^$',
|
|
BankListView.as_view(),
|
|
name='bank-list'),
|
|
|
|
]
|
|
"""
|
|
url(r'^export_csv$',
|
|
ExportCsvView.as_view(),
|
|
name='export-bank-csv') """
|