minor improvement, remove user_settings.html
This commit is contained in:
parent
d0e90531c6
commit
f8cdf8fead
@ -130,20 +130,19 @@ def check_emergency():
|
|||||||
notice_header = '<span style="background-color: #ff0000; color: #ffffff;">EMERGENCY ACTIVATION</span>'
|
notice_header = '<span style="background-color: #ff0000; color: #ffffff;">EMERGENCY ACTIVATION</span>'
|
||||||
value = Markup("""
|
value = Markup("""
|
||||||
<h1 style="text-align: center;">""" + notice_header + """</h1>
|
<h1 style="text-align: center;">""" + notice_header + """</h1>
|
||||||
<p> </p>
|
|
||||||
<table style="width: 441px; margin-left: auto; margin-right: auto;" border="3">
|
<table style="width: 441px; margin-left: auto; margin-right: auto;" border="3">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 78.3667px;"><span style="text-decoration: underline;"><strong>From:</strong></span></td>
|
<td style="width: 78.3667px;"><span style="text-decoration: underline;"><strong>From:</strong></span></td>
|
||||||
<td style="width: 345.633px; text-align: center;"><strong>""" + sos_file['call'] + """ - """ + str(sos_file['dmr_id']) + """</strong></td>
|
<td style="width: 345.633px; text-align: center;"><strong>""" + sos_file['call'] + """</strong> - """ + str(sos_file['dmr_id']) + """</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 78.3667px;"><span style="text-decoration: underline;"><strong>Message:</strong></span></td>
|
<td style="width: 78.3667px;"><span style="text-decoration: underline;"><strong>Message:</strong></span></td>
|
||||||
<td style="width: 345.633px; text-align: center;"><strong>""" + sos_file['message'] + """</strong></td>
|
<td style="width: 345.633px; text-align: center;">""" + sos_file['message'] + """</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 78.3667px;"><span style="text-decoration: underline;"><strong>Time:</strong></span></td>
|
<td style="width: 78.3667px;"><span style="text-decoration: underline;"><strong>Time:</strong></span></td>
|
||||||
<td style="width: 345.633px; text-align: center;"><strong>""" + sos_file['time'] + """</strong></td>
|
<td style="width: 345.633px; text-align: center;">""" + sos_file['time'] + """</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
@ -331,6 +330,7 @@ def user_settings():
|
|||||||
user_id = request.args.get('user_id')
|
user_id = request.args.get('user_id')
|
||||||
if not user_id:
|
if not user_id:
|
||||||
user_result = """
|
user_result = """
|
||||||
|
Use this tool to find and check the stored APRS settings for your DMR ID. When a position is sent, the stored settings will be used to format the APRS packet.
|
||||||
<form action="user" method="get">
|
<form action="user" method="get">
|
||||||
<table style="margin-left: auto; margin-right: auto;">
|
<table style="margin-left: auto; margin-right: auto;">
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -397,7 +397,7 @@ def user_settings():
|
|||||||
<p style="text-align: center;"><button onclick="history.back()">Back</button>
|
<p style="text-align: center;"><button onclick="history.back()">Back</button>
|
||||||
</p>'''
|
</p>'''
|
||||||
|
|
||||||
return render_template('user_settings.html', title = dashboard_title, logo = logo, user_result = Markup(user_result))
|
return render_template('generic.html', title = dashboard_title, logo = logo, content = Markup(user_result))
|
||||||
|
|
||||||
@app.route('/mailbox')
|
@app.route('/mailbox')
|
||||||
def mailbox():
|
def mailbox():
|
||||||
@ -436,7 +436,6 @@ def mailbox():
|
|||||||
for messages in mailbox_file:
|
for messages in mailbox_file:
|
||||||
if messages['recipient'] == recipient.upper():
|
if messages['recipient'] == recipient.upper():
|
||||||
mail_content = mail_content + """
|
mail_content = mail_content + """
|
||||||
<p> </p>
|
|
||||||
<table style="margin-left: auto; margin-right: auto; width: 372.55px;" border="1">
|
<table style="margin-left: auto; margin-right: auto; width: 372.55px;" border="1">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
@ -457,6 +456,7 @@ def mailbox():
|
|||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
<p> </p>
|
||||||
|
|
||||||
"""
|
"""
|
||||||
return render_template('generic.html', title = dashboard_title, logo = logo, content = Markup(mail_content))
|
return render_template('generic.html', title = dashboard_title, logo = logo, content = Markup(mail_content))
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
<table style="width: 500px; margin-left: auto; margin-right: auto;" border="black" cellspacing="3" cellpadding="3">
|
<table style="width: 500px; margin-left: auto; margin-right: auto;" border="black" cellspacing="3" cellpadding="3">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="text-align: center;"><button onclick="window.location.href='/';"> D-APRS Dashboard </button></td>
|
<td style="text-align: center;"><button onclick="window.location.href='/';"> Dashboard Home </button></td>
|
||||||
<td style="text-align: center;"><button onclick="window.location.href='/map';"> Station Map </button></td>
|
<td style="text-align: center;"><button onclick="window.location.href='/map';"> Station Map </button></td>
|
||||||
<td style="text-align: center;"><button onclick="window.location.href='/mailbox';"> The Mailbox </button></td>
|
<td style="text-align: center;"><button onclick="window.location.href='/mailbox';"> The Mailbox </button></td>
|
||||||
<td style="text-align: center;"><button onclick="window.location.href='/user';"> User Settings </button></td>
|
<td style="text-align: center;"><button onclick="window.location.href='/user';"> User Settings </button></td>
|
||||||
<td style="text-align: center;"><button onclick="window.location.href='/help';"> D-APRS Help </button></td>
|
<td style="text-align: center;"><button onclick="window.location.href='/help';"> Dashboard Help </button></td>
|
||||||
<td style="text-align: center;"><button onclick="window.location.href='/about';"> Gateway Contact </button></td>
|
<td style="text-align: center;"><button onclick="window.location.href='/about';"> Gateway Contact </button></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
{% include 'page.html' %}
|
|
||||||
{% include 'header.html' %}
|
|
||||||
<p> </p>
|
|
||||||
Use this tool to find the stored APRS settings for your DMR ID. When a position is sent, the stored settings will be used to format the APRS packet.
|
|
||||||
{{user_result}}
|
|
||||||
<p> </p>
|
|
||||||
{% include 'footer.html' %}
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user