From 2e23b3b9e56f93ec12716fcb17e3763ad6ae0882 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 9 Feb 2024 21:41:32 +0000 Subject: [PATCH] Change position --- webapp_profile.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/webapp_profile.py b/webapp_profile.py index 20d9fe837..bdade252a 100644 --- a/webapp_profile.py +++ b/webapp_profile.py @@ -2439,15 +2439,6 @@ def _html_edit_profile_filtering(base_dir: str, nickname: str, domain: str, 'buySitesStr', buy_domains_list_str, 200, '', False) - idx = 'Block military instances' - if translate.get(idx): - name = translate[idx] - block_mil = False - if block_military.get(nickname): - block_mil = block_military[nickname] - edit_profile_form += \ - edit_check_box(idx, 'blockMilitary', block_mil) - block_federated_endpoints_list_str = '' for block_api_url in block_federated_endpoints: block_federated_endpoints_list_str += block_api_url.strip() + '\n' @@ -2458,6 +2449,15 @@ def _html_edit_profile_filtering(base_dir: str, nickname: str, domain: str, block_federated_endpoints_list_str, 200, '', False) + idx = 'Block military instances' + if translate.get(idx): + name = translate[idx] + block_mil = False + if block_military.get(nickname): + block_mil = block_military[nickname] + edit_profile_form += \ + edit_check_box(idx, 'blockMilitary', block_mil) + cw_lists_str = '' for name, _ in cw_lists.items(): variablename = get_cw_list_variable(name)