summaryrefslogtreecommitdiff
path: root/templates/edit_xref_locate_fields.tpl
blob: f63229f294b2f785650449152650afe2f358cb7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{strip}
<div class="form-group">
	{formlabel label="Geographic Location" for="`$output`xref"}
	{forminput}
		<a class="item" href="http://www.openstreetmap.org/?mlat={$xrefInfo.xkey_ext}&mlon={$xrefInfo.xkey}&zoom=17&layers=MN" target="_blank">{tr}OpenStreetMap Link{/tr}</a>
		{formhelp note="Use one of the graphical tools like multimap or google maps to identify actual co-ordinates."}
	{/forminput}
	<div class="clear"></div>
</div>

<div class="form-group">
	{formlabel label="Easting/Longitude" for="`$output`xkey"}
	{forminput}
		<input type="text" name="{$output}xkey" id="xkey" value="{$xrefInfo.xkey|escape}" />
		{formhelp note="Longitude for the location."}
	{/forminput}
	<div class="clear"></div>
</div>

<div class="form-group">
	{formlabel label="Northing/Latitude" for="`$output`xkey_ext"}
	{forminput}
		<input type="text" name="{$output}xkey_ext" id="xkey_ext" value="{$xrefInfo.xkey_ext|escape}" />
		{formhelp note="Latitude for the location."}
	{/forminput}
	<div class="clear"></div>
</div>
{/strip}