diff options
author | Manuel Munz <freifunk@somakoma.de> | 2012-11-26 13:11:41 +0000 |
---|---|---|
committer | Manuel Munz <freifunk@somakoma.de> | 2012-11-26 13:11:41 +0000 |
commit | e2f3b8923d2771245082a93d170699828c8d7107 (patch) | |
tree | 3bdd2cc41972081c95122d797863ca93ed329a22 /libs | |
parent | 848e43a5b47c0467b90e7d9a029e59ec53461da3 (diff) |
libs/web: Allow to disable buttons in cbi models from the controller
Diffstat (limited to 'libs')
-rw-r--r-- | libs/web/luasrc/view/cbi/footer.htm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libs/web/luasrc/view/cbi/footer.htm b/libs/web/luasrc/view/cbi/footer.htm index ef6776114..2c34028e5 100644 --- a/libs/web/luasrc/view/cbi/footer.htm +++ b/libs/web/luasrc/view/cbi/footer.htm @@ -9,11 +9,15 @@ <% if flow.skip then %> <input class="cbi-button cbi-button-skip" type="submit" name="cbi.skip" value="<%:Skip%>" /> <% end %> - <% if not autoapply then %> + <% if not autoapply and not flow.hideapplybtn then %> <input class="cbi-button cbi-button-apply" type="submit" name="cbi.apply" value="<%:Save & Apply%>" /> <% end %> - <input class="cbi-button cbi-button-save" type="submit" value="<%:Save%>" /> - <input class="cbi-button cbi-button-reset" type="reset" value="<%:Reset%>" /> + <% if not flow.hidesavebtn then %> + <input class="cbi-button cbi-button-save" type="submit" value="<%:Save%>" /> + <% end %> + <% if not flow.hideresetbtn then %> + <input class="cbi-button cbi-button-reset" type="reset" value="<%:Reset%>" /> + <% end %> <script type="text/javascript">cbi_d_update();</script> </div> |