diff --git a/README.md b/README.md
index 0a34de6..31aad70 100644
--- a/README.md
+++ b/README.md
@@ -89,7 +89,7 @@ or maybe upgrade dependency version, If still facing issue to run **pip install
├── static-collected
└── venv
```
-6. Then, update information in local_setting.py file, the example is below for updating information. For this file, required **OAUTH_CONSUMER_KEY** and **OAUTH_CONSUMER_SECRET** to run this app. For this purpose, must be OBP-API running locally. Follow these steps to run [OBP-API Local](https://github.com/OpenBankProject/OBP-API).
+6. Then, update information in local_setting.py file, the example is below for updating information. For this file, required **OAUTH_CONSUMER_KEY** and **OAUTH_CONSUMER_SECRET** to run this app. For this purpose, must be OBP-API running locally. Follow these steps to run [OBP-API Local](https://github.com/OpenBankProject/OBP-API).
```python
@@ -137,6 +137,13 @@ DATABASE = {
"PORT": "5432",
}
}
+
+# This is an optional setting.
+# CALLBACK_BASE_URL can be used to explicitly set the redirect base url that API Manager uses during OAuth authentication.
+# If CALLBACK_BASE_URL is not set, API Manager (this applicaiton) in the function "get_redirect_url" will use the Django HTTP_HOST environ field (see here: https://docs.djangoproject.com/en/4.1/ref/request-response/). Note, this might be modified by NGINX via the directive: proxy_set_header Host $http_host;
+# In order to be explicit you can set it here e.g.
+# CALLBACK_BASE_URL="https://apimanager.example.com"
+
```
@@ -220,9 +227,9 @@ EXCLUDE_URL_PATTERN = []
API_EXPLORER_APP_NAME = 'xxx'
#Map Java: yyyy-MM-dd'T'HH:mm'Z'
-API_DATETIMEFORMAT = '%Y-%m-%dT%H:%M:%SZ'
+API_DATE_TIME_FORMAT = '%Y-%m-%dT%H:%M:%SZ'
#Map Java: yyyy-MM-dd'T'HH:mm:ss.SSS'Z'
-API_DATEFORMAT = '%Y-%m-%dT%H:%M:%S.000Z'
+API_DATE_FORMAT = '%Y-%m-%dT%H:%M:%S.000Z'
```
diff --git a/apimanager/accountlist/__init__.py b/apimanager/accountlist/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/apimanager/accountlist/admin.py b/apimanager/accountlist/admin.py
new file mode 100644
index 0000000..8c38f3f
--- /dev/null
+++ b/apimanager/accountlist/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/apimanager/accountlist/apps.py b/apimanager/accountlist/apps.py
new file mode 100644
index 0000000..50a7695
--- /dev/null
+++ b/apimanager/accountlist/apps.py
@@ -0,0 +1,5 @@
+from django.apps import AppConfig
+
+
+class AccountConfig(AppConfig):
+ name = 'account-list'
diff --git a/apimanager/accountlist/forms.py b/apimanager/accountlist/forms.py
new file mode 100644
index 0000000..e69de29
diff --git a/apimanager/accountlist/models.py b/apimanager/accountlist/models.py
new file mode 100644
index 0000000..3b5ea8d
--- /dev/null
+++ b/apimanager/accountlist/models.py
@@ -0,0 +1,4 @@
+from django.db import models
+
+# Create your models here.
+# -*- coding: utf-8 -*-
diff --git a/apimanager/accountlist/static/accountlist/css/accountlist.css b/apimanager/accountlist/static/accountlist/css/accountlist.css
new file mode 100644
index 0000000..5e85ae8
--- /dev/null
+++ b/apimanager/accountlist/static/accountlist/css/accountlist.css
@@ -0,0 +1,18 @@
+#accounts_list div {
+ margin: 5px 0;
+}
+
+/* The actual popup (appears on top) */
+.popuptext {
+ width: 250px;
+ background-color: #555;
+ color: #fff;
+ text-align: left;
+ border-radius: 6px;
+ padding: 8px 0;
+ z-index: 1;
+ /*bottom: 125%;*/
+ top:100%
+ left: 50%;
+ margin-left: -80px;
+}
diff --git a/apimanager/accountlist/static/accountlist/js/accountlist.js b/apimanager/accountlist/static/accountlist/js/accountlist.js
new file mode 100644
index 0000000..e69de29
diff --git a/apimanager/accountlist/templates/accountlist/accountlist.html b/apimanager/accountlist/templates/accountlist/accountlist.html
new file mode 100644
index 0000000..99cc0d7
--- /dev/null
+++ b/apimanager/accountlist/templates/accountlist/accountlist.html
@@ -0,0 +1,43 @@
+{% extends 'base.html' %} {% load static %} {% load i18n %}
+{% block page_title %} {{ block.super }} / {% trans "Account List" %}{% endblock page_title %} {% block content %}
+
+
{% trans "Account List" %}
+
+
+
+
+
{% trans "Account Id" %}
+
{% trans "Bank Id" %}
+
{% trans "Label" %}
+
{% trans "More info" %}
+
+
+ {% for account in accounts_list %}
+ {% url 'account_update' account.id account.bank_id as url_account_update %}
+