libs/web: Allow to disable buttons in cbi models from the controller
This commit is contained in:
parent
848e43a5b4
commit
e2f3b8923d
1 changed files with 7 additions and 3 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue