28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
<%#
|
|
LuCI - Lua Configuration Interface
|
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
|
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
$Id: contact.htm 3646 2008-10-29 18:54:56Z jow $
|
|
|
|
-%>
|
|
<%+header%>
|
|
<% local contact = luci.model.uci.cursor():get_all("freifunk", "contact") %>
|
|
<h2><a id="content" name="content"><%:contact%></a></h2>
|
|
<table cellspacing="0" cellpadding="6">
|
|
<tr><th><%:ff_nickname%>:</th><td><%=contact.nickname%></td></tr>
|
|
<tr><th><%:ff_name%>:</th><td><%=contact.name%></td></tr>
|
|
<tr><th><%:ff_mail%>:</th><td><%=contact.mail%></td></tr>
|
|
<tr><th><%:ff_phone%>:</th><td><%=contact.phone%></td></tr>
|
|
<tr><th><%:ff_location%>:</th><td><%=contact.location%></td></tr>
|
|
<tr><th><%:ff_geocoord%>:</th><td><%=contact.geo%></td></tr>
|
|
<tr><th><%:ff_note%>:</th><td><%=contact.note%></td></tr>
|
|
</table>
|
|
<%+footer%>
|