23a5e7b1af0c0eb1b538a4bfbfa7bcc889b128c3
[project/luci.git] / modules / freifunk / luasrc / view / freifunk / contact.htm
1 <%#
2 LuCI - Lua Configuration Interface
3 Copyright 2008 Steven Barth <steven@midlink.org>
4 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
5 Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12 -%>
13
14 <%+header%>
15
16 <%
17 local uci = require "luci.model.uci".cursor()
18 local contact = uci:get_all("freifunk", "contact")
19 local nickname, name, mail, phone, location, note
20 local lon = uci:get_first("system", "system", "longitude")
21 local lat = uci:get_first("system", "system", "latitude")
22
23 if not contact then
24 nickname, name, mail, phone, location, note = ""
25 else
26 nickname = contact.nickname or ""
27 name = contact.name or ""
28 mail = contact.mail or ""
29 phone = contact.phone or ""
30 location = uci:get_first("system", "system", "location") or contact.location
31 note = contact.note or ""
32 end
33 %>
34
35 <h2><a id="content" name="content"><%:Contact%></a></h2>
36
37 <fieldset xmlns="http://www.w3.org/1999/xhtml" class="cbi-section">
38 <legend><%:Operator%></legend>
39 <table cellspacing="10" width="100%" style="text-align:left">
40 <tr><th width="33%"><%:Nickname%>:</th><td><%=nickname%></td></tr>
41 <tr><th width="33%"><%:Realname%>:</th><td><%=name%></td></tr>
42 <tr><th width="33%"><%:E-Mail%>:</th><td><a href="mailto:<%=mail%>"><%=mail%></a></td></tr>
43 <tr><th width="33%"><%:Phone%>:</th><td><%=phone%></td></tr>
44 </table>
45 </fieldset>
46
47 <fieldset xmlns="http://www.w3.org/1999/xhtml" class="cbi-section">
48 <legend><%:Location%></legend>
49 <table cellspacing="10" width="100%" style="text-align:left">
50 <tr><th width="33%"><%:Location%>:</th><td><%=location%></td></tr>
51 <tr><th width="33%"><%:Coordinates%>:</th><td><%=lat%> <%=lon%> (<a href="<%=pcdata(luci.dispatcher.build_url("freifunk/map"))%>"><%:Show on map%>)</a></td></tr>
52 </table>
53 </fieldset>
54
55 <% if note then %>
56 <fieldset xmlns="http://www.w3.org/1999/xhtml" class="cbi-section">
57 <legend><%:Notice%></legend>
58 <table cellspacing="10" width="100%" style="text-align:left">
59 <tr><td><%=note%></td></tr>
60 </table>
61 </fieldset>
62 <%end%>
63
64 <%+footer%>