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 = '''
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 = '''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 = '''
-
- +
+ +
''' return render_template('flask_user_layout.html', markup_content = Markup(content))