<%# Copyright 2008 Steven Barth Copyright 2008 Jo-Philipp Wich Copyright 2011 Manuel Munz Licensed to the public under the Apache License 2.0. -%> <%+header%> <% local uci = require "luci.model.uci".cursor() local contact = uci:get_all("freifunk", "contact") local nickname, name, mail, phone, location, note local lon = uci:get_first("system", "system", "longitude") local lat = uci:get_first("system", "system", "latitude") if not contact then nickname, name, homepage, mail, phone, location, note = "" else nickname = contact.nickname or "" name = contact.name or "" homepage = contact.homepage or {} mail = contact.mail or "" phone = contact.phone or "" location = uci:get_first("system", "system", "location") or contact.location note = contact.note or "" end %>

<%:Contact%>

<%:Operator%>
<%:Nickname%>:<%=nickname%>
<%:Realname%>:<%=name%>
<%:Homepage%>: <% for k, v in ipairs(homepage) do %> <%=v%>
<% end %>
<%:E-Mail%>:<%=mail%>
<%:Phone%>:<%=phone%>
<%:Location%>
<%:Location%>:<%=location%>
<%:Coordinates%>:<%=lat%> <%=lon%> ("><%:Show on map%>)
<% if note then %>
<%:Notice%>
<%=note%>
<%end%> <%+footer%>