diff --git a/webapp_create_post.py b/webapp_create_post.py
index 7537e6e42..7da6795ca 100644
--- a/webapp_create_post.py
+++ b/webapp_create_post.py
@@ -24,6 +24,7 @@ from utils import get_currencies
from utils import get_category_types
from utils import get_account_timezone
from utils import get_supported_languages
+from webapp_utils import html_following_data_list
from webapp_utils import html_common_emoji
from webapp_utils import begin_edit_section
from webapp_utils import end_edit_section
@@ -39,48 +40,6 @@ from maps import get_map_preferences_coords
from maps import get_location_from_tags
-def _html_following_data_list(base_dir: str, nickname: str,
- domain: str, domain_full: str) -> str:
- """Returns a datalist of handles being followed
- """
- list_str = '\n'
- return list_str
-
-
def _html_new_post_drop_down(scope_icon: str, scope_description: str,
reply_str: str,
translate: {},
@@ -1066,7 +1025,7 @@ def html_new_post(edit_post_params: {},
' \n'
new_post_form += \
- _html_following_data_list(base_dir, nickname, domain, domain_full)
+ html_following_data_list(base_dir, nickname, domain, domain_full)
new_post_form += ''
selected_str = ''
diff --git a/webapp_utils.py b/webapp_utils.py
index 7c9a4cb16..2399f9a4d 100644
--- a/webapp_utils.py
+++ b/webapp_utils.py
@@ -1967,3 +1967,47 @@ def get_default_path(media_instance: bool, blogs_instance: bool,
else:
path = '/users/' + nickname + '/inbox'
return path
+
+
+def html_following_data_list(base_dir: str, nickname: str,
+ domain: str, domain_full: str,
+ following_type: str = "following") -> str:
+ """Returns a datalist of handles being followed
+ folloingHandles, followersHandles
+ """
+ list_str = '\n'
+ return list_str