From c36fd44de2db30c08848bf326365a1e372b7879c Mon Sep 17 00:00:00 2001 From: Manuel Munz Date: Tue, 25 Jan 2011 21:04:57 +0000 Subject: applications/ffwizard: Massive changes to the ffwizard to make it more generic. Also introduces changes to the community profiles. ffwizard replaces ffwizard-leipzig now. It is not completely finished yet, but should work in most cases. --- .../luasrc/view/freifunk/ffwizard_error.htm | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 applications/luci-ffwizard/luasrc/view/freifunk/ffwizard_error.htm (limited to 'applications/luci-ffwizard/luasrc/view') diff --git a/applications/luci-ffwizard/luasrc/view/freifunk/ffwizard_error.htm b/applications/luci-ffwizard/luasrc/view/freifunk/ffwizard_error.htm new file mode 100644 index 0000000000..2364ff2adb --- /dev/null +++ b/applications/luci-ffwizard/luasrc/view/freifunk/ffwizard_error.htm @@ -0,0 +1,27 @@ +<%+header%> + +<% +local uci = require "luci.model.uci".cursor() +local basicsurl = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "freifunk", "basics") +local hostname = uci:get_first ("system", "system", "hostname") +local latitude = uci:get_first ("system", "system", "latitude") +local longitude = uci:get_first ("system", "system", "longitude") +local location = uci:get_first ("system", "system", "location") +%> + +

<%:Error%>

+ +<%:You can not use the wizard because some necessary values are not set.%> +

+ +<% +local co = uci:get("freifunk", "community", "name") +if not (co and hostname and latitude and longitude and location) then +%> +<%:Basic settings are missing. Please go to this page and fill all required fields: %> +<%:Basic settings%> +

+<% end %> + + +<%+footer%> -- cgit v1.2.3