mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 10:42:06 +00:00
30 lines
1.3 KiB
Python
30 lines
1.3 KiB
Python
|
# © 2015-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
||
|
# © 2016 Pedro M. Baeza <pedro.baeza@tecnativa.com>
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||
|
|
||
|
from flectra import models, fields
|
||
|
|
||
|
|
||
|
class MapWebsite(models.Model):
|
||
|
_name = 'map.website'
|
||
|
_description = 'Map Website'
|
||
|
|
||
|
name = fields.Char(string='Map Website Name', required=True)
|
||
|
address_url = fields.Char(
|
||
|
string='URL that uses the address',
|
||
|
help="In this URL, {ADDRESS} will be replaced by the address.")
|
||
|
lat_lon_url = fields.Char(
|
||
|
string='URL that uses latitude and longitude',
|
||
|
help="In this URL, {LATITUDE} and {LONGITUDE} will be replaced by "
|
||
|
"the latitude and longitude (requires the module 'base_geolocalize')")
|
||
|
route_address_url = fields.Char(
|
||
|
string='Route URL that uses the addresses',
|
||
|
help="In this URL, {START_ADDRESS} and {DEST_ADDRESS} will be "
|
||
|
"replaced by the start and destination addresses.")
|
||
|
route_lat_lon_url = fields.Char(
|
||
|
string='Route URL that uses latitude and longitude',
|
||
|
help="In this URL, {START_LATITUDE}, {START_LONGITUDE}, "
|
||
|
"{DEST_LATITUDE} and {DEST_LONGITUDE} will be replaced by the "
|
||
|
"latitude and longitude of the start and destination adresses "
|
||
|
"(requires the module 'base_geolocalize').")
|