Skip to content

Commit 54e1a7c

Browse files
committed
Fix minor items
1 parent 202dabc commit 54e1a7c

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

app.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1064,9 +1064,6 @@ def admin_users_edit():
10641064
# Ensure session page is set to "howto" before howto.html is rendered
10651065
session["page"] = "profile"
10661066

1067-
print("admin_users_edit.html")
1068-
print(profile_message_password)
1069-
10701067
return render_template("admin_users_edit.html",
10711068
page="profile",
10721069
userid=session["user_id"],

queries.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from math import floor, ceil, exp, radians, degrees, cos, sqrt
66
from haversine import haversine, Unit
77
import time
8-
import requests
98

109

1110
def get_registered(db, new_username, new_password):

templates/admin_fifty.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
<td class="text-start">{{ loc.id }}</td>
213213
<td class="text-start">{{ loc.loc_internal_id }}</td>
214214
<td class="text-start">{{ loc.loc_city }}, {{ loc.loc_state }} {{ loc.loc_country }}</td>
215-
<td class="text-start"><a href="{{ loc.loc_url_source }}" target="_blank">link</a></td>
215+
<td class="text-start"><a href="{{ loc.loc_url_source }}" target="_blank" rel="noopener noreferrer">link</a></td>
216216
<!-- Is Playable -->
217217
<td class="text-start-center">
218218
{% if loc.loc_playable == True %}

templates/locs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<td class="text-start">{{ k.id }}</td>
6969
<td class="text-start">{{ k.loc_internal_id }}</td>
7070
<td class="text-start">{{ k.loc_city }}, {{ k.loc_state }} {{ k.loc_country }}</td>
71-
<td class="text-start"><a href="{{ k.loc_url_source }}" target="_blank">link</a></td>
71+
<td class="text-start"><a href="{{ k.loc_url_source }}" target="_blank" rel="noopener noreferrer">link</a></td>
7272
<!-- Is Playable -->
7373
<td class="text-start-center">
7474
{% if k.loc_playable == True %}

0 commit comments

Comments
 (0)