Remove trailing dollar in long and lat placeholder
This commit is contained in:
parent
32ae0aa5f3
commit
f6e502dfbd
10
TEMPLATE.env
10
TEMPLATE.env
@ -85,10 +85,10 @@ BLOCK_ALL_IPS=False
|
||||
AGGRESSIVE_HASH_SALTING=True
|
||||
|
||||
# Custom location url to link to in frontend.
|
||||
# $LATITUDE$ will get replaced by the latitude, $LONGITUDE$ will get
|
||||
# $LATITUDE will get replaced by the latitude, $LONGITUDE will get
|
||||
# replaced by the longitude.
|
||||
# Examples:
|
||||
# - https://www.openstreetmap.org/?mlat=$LATITUDE$&mlon=$LONGITUDE$ (default)
|
||||
# - https://www.google.com/maps/search/?api=1&query=$LATITUDE$,$LONGITUDE$
|
||||
# - https://www.mapquest.com/near-$LATITUDE$,$LONGITUDE$
|
||||
LOCATION_URL=https://www.openstreetmap.org/?mlat=$LATITUDE$&mlon=$LONGITUDE$
|
||||
# - https://www.openstreetmap.org/?mlat=$LATITUDE&mlon=$LONGITUDE (default)
|
||||
# - https://www.google.com/maps/search/?api=1&query=$LATITUDE,$LONGITUDE
|
||||
# - https://www.mapquest.com/near-$LATITUDE,$LONGITUDE
|
||||
LOCATION_URL=https://www.openstreetmap.org/?mlat=$LATITUDE&mlon=$LONGITUDE
|
2
app.json
2
app.json
@ -125,7 +125,7 @@
|
||||
},
|
||||
"LOCATION_URL": {
|
||||
"description": "Custom location url to link to in frontend.",
|
||||
"value": "https://www.openstreetmap.org/?mlat=$LATITUDE$&mlon=$LONGITUDE$",
|
||||
"value": "https://www.openstreetmap.org/?mlat=$LATITUDE&mlon=$LONGITUDE",
|
||||
"required": false
|
||||
}
|
||||
}
|
||||
|
@ -187,4 +187,4 @@ def urldisplay(url):
|
||||
|
||||
@register.filter
|
||||
def location_url(session):
|
||||
return settings.LOCATION_URL.replace("$LATITUDE$", str(session.latitude)).replace("$LONGITUDE$", str(session.longitude))
|
||||
return settings.LOCATION_URL.replace("$LATITUDE", str(session.latitude)).replace("$LONGITUDE", str(session.longitude))
|
@ -341,4 +341,4 @@ BLOCK_ALL_IPS = os.getenv("BLOCK_ALL_IPS", "False") == "True"
|
||||
AGGRESSIVE_HASH_SALTING = os.getenv("AGGRESSIVE_HASH_SALTING", "False") == "True"
|
||||
|
||||
# What location url should be linked to in the frontend?
|
||||
LOCATION_URL = os.getenv("LOCATION_URL", "https://www.openstreetmap.org/?mlat=$LATITUDE$&mlon=$LONGITUDE$")
|
||||
LOCATION_URL = os.getenv("LOCATION_URL", "https://www.openstreetmap.org/?mlat=$LATITUDE&mlon=$LONGITUDE")
|
||||
|
Loading…
Reference in New Issue
Block a user