diff --git a/web/app.py b/web/app.py index caa20d3..fd921bc 100644 --- a/web/app.py +++ b/web/app.py @@ -2164,12 +2164,18 @@ def hbnet_web_service(): content = '''

Saved terms of service.

Redirecting in 3 seconds.

''' + elif request.args.get('aprs') == 'save': + misc_edit_field_1('unregistered_aprs', request.form.get('aprs_text'), None, None, None, None, None, None, None, None) + content = '''

Saved terms of service.

+

Redirecting in 3 seconds.

+ ''' else: email_text = Misc.query.filter_by(field_1='approval_email').first() flash_text = Misc.query.filter_by(field_1='approval_flash').first() home_text = Misc.query.filter_by(field_1='home_page').first() tos_text = Misc.query.filter_by(field_1='terms_of_service').first() + aprs_text = Misc.query.filter_by(field_1='unregistered_aprs').first() content = '''

 

@@ -2224,8 +2230,6 @@ def hbnet_web_service():

 

-

 

-
@@ -2241,6 +2245,23 @@ def hbnet_web_service():
+

 

+ +
+ + + + + + + + + +

+

 

+

+
+

 

''' return render_template('flask_user_layout.html', markup_content = Markup(content))