2

I am trying to modify the web interface of bootstrap theme in OpenWrt's luci web interface and i managed to change colors and some simple things but i cannot find how to change the names of the tabs (for example instead of "status" to write "status11111"). Also i wanted to add a logo picture on the top of the page and i managed to add it for the login page and also it appears on the default main page after the login but then if I swap to any tab the picture appears like crashed or missing (see the image bellow) and the link becomes like this "/cgi-bin/luci/;stok=96c966ea63a7913b6c02fc09c7862d77/admin/status/overview".

My 2 questions are: how can I change the names of the tabs and how can I add a logo picture on the top of the page so it can appear to every tab? What files do I have to modify?

Image of a web UI

4

1 に答える 1

3

質問 #1「タブの名前を変更する方法」については、/usr/lib/lua/luci/controllers/admin を参照してください。

「index.lua」、「status.lua」、「network.lua」など、いくつかのファイルがあります。たとえば、ステータス タブの名前を「Status」から「New」に変更したい場合は、 Status Tab Name」を使用している場合は、status.lua に移動して、次の行を見つけます。

entry({"admin", "status"}, alias("admin", "status", "overview"), _("Status"), 20).index = true

そしてそれを次のように置き換えます:

entry({"admin", "status"}, alias("admin", "status", "overview"), _("New Status Tab Name"), 20).index = true

質問 2 では、画像を追加したときに正確に何を編集しましたか?

于 2013-11-03T18:40:17.453 に答える