source: extensions/Psli_BingMaps/template/admin.tpl @ 14872

Last change on this file since 14872 was 14872, checked in by psli, 12 years ago
File size: 1.4 KB
Line 
1<!--
2Plugin Name: Psli-BingMaps
3Author: psli
4Description: Template for administrator setup of plugin Psli-BingMaps
5-->
6<div class="titrePage">
7<h2>Psli-BingMaps</h2>
8</div>
9
10<form action="" method="post">
11
12<fieldset>
13<legend>{'Configuration'|@translate}</legend>
14<table style="width:100%;">
15        <colgroup>
16                <col width="40%" >
17                <col width="60%" >
18        </colgroup>
19  <tr>
20    <td align="right">{'Bing Maps Key'|@translate} : &nbsp;&nbsp;</td>
21    <td><input type="text" size="77" maxlength="100" name="key" value="{$KEY}" /></td></td>
22  </tr>
23  <tr>
24    <td align="right">{'Center Latittude'|@translate} : &nbsp;&nbsp;</td>
25    <td><input type="text" size="30" maxlength="21" name="lat" value="{$LAT}"></td></td>
26  </tr>
27  <tr>
28    <td align="right">{'Center Longitude'|@translate} : &nbsp;&nbsp;</td>
29    <td><input type="text" size="30" maxlength="21" name="lon" value="{$LON}"></td></td>
30  </tr>
31  <tr>
32    <td align="right">{'Zoom'|@translate} : &nbsp;&nbsp;</td>
33    <td><input type="text" size="10" maxlength="3" name="zoom" value="{$ZOOM}"></td></td>
34  </tr>
35  <tr>
36    <td align="right">{'Categorie'|@translate} : &nbsp;&nbsp;</td>
37    <td>
38                <select name="catSelected">
39                        {html_options options=$category_select_selected}
40                        {html_options options=$category_select}
41                </select>
42        </td>
43  </tr>
44
45</table>
46</fieldset>
47
48<p><input type="submit" name="submit" value="{'Submit'|@translate}"></p>
49
50</form>
Note: See TracBrowser for help on using the repository browser.