contact.lua 637 B

12345678910111213141516
  1. -- Copyright 2008 Steven Barth <steven@midlink.org>
  2. -- Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
  3. -- Licensed to the public under the Apache License 2.0.
  4. m = Map("freifunk", translate("Contact"), translate("Please fill in your contact details below."))
  5. c = m:section(NamedSection, "contact", "public", "")
  6. c:option(Value, "nickname", translate("Nickname"))
  7. c:option(Value, "name", translate("Realname"))
  8. c:option(DynamicList, "homepage", translate("Homepage"))
  9. c:option(Value, "mail", translate("E-Mail"))
  10. c:option(Value, "phone", translate("Phone"))
  11. c:option(TextValue, "note", translate("Notice")).rows = 10
  12. return m