libs/web: Allow to disable buttons in cbi models from the controller

This commit is contained in:
Manuel Munz 2012-11-26 13:11:41 +00:00
parent 848e43a5b4
commit e2f3b8923d

View file

@ -9,11 +9,15 @@
<% if flow.skip then %> <% if flow.skip then %>
<input class="cbi-button cbi-button-skip" type="submit" name="cbi.skip" value="<%:Skip%>" /> <input class="cbi-button cbi-button-skip" type="submit" name="cbi.skip" value="<%:Skip%>" />
<% end %> <% 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%>" /> <input class="cbi-button cbi-button-apply" type="submit" name="cbi.apply" value="<%:Save & Apply%>" />
<% end %> <% end %>
<% if not flow.hidesavebtn then %>
<input class="cbi-button cbi-button-save" type="submit" value="<%:Save%>" /> <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%>" /> <input class="cbi-button cbi-button-reset" type="reset" value="<%:Reset%>" />
<% end %>
<script type="text/javascript">cbi_d_update();</script> <script type="text/javascript">cbi_d_update();</script>
</div> </div>