|
Revision 5393, 423 bytes
(checked in by jow, 4 years ago)
|
|
modules/admin-full: prepare iface join wizzard
|
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | --[[ |
|---|
| 2 | LuCI - Lua Configuration Interface |
|---|
| 3 | |
|---|
| 4 | Copyright 2009 Jo-Philipp Wich <xm@subsignal.org> |
|---|
| 5 | |
|---|
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
|---|
| 7 | you may not use this file except in compliance with the License. |
|---|
| 8 | You may obtain a copy of the License at |
|---|
| 9 | |
|---|
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
|---|
| 11 | |
|---|
| 12 | $Id$ |
|---|
| 13 | ]]-- |
|---|
| 14 | |
|---|
| 15 | d = Delegator() |
|---|
| 16 | d.allow_back = true |
|---|
| 17 | d:add("step1", load("admin_network/iface_add_s1", arg[1])) |
|---|
| 18 | |
|---|
| 19 | return d |
|---|