footer.htm 986 B

1234567891011121314151617181920212223242526
  1. <%- if pageaction then -%>
  2. <div class="cbi-page-actions">
  3. <% if redirect then %>
  4. <div style="float:left">
  5. <input class="cbi-button cbi-button-link" type="button" value="<%:Back to Overview%>" onclick="location.href='<%=pcdata(redirect)%>'" />
  6. </div>
  7. <% end %>
  8. <% if flow.skip then %>
  9. <input class="cbi-button cbi-button-skip" type="submit" name="cbi.skip" value="<%:Skip%>" />
  10. <% end %>
  11. <% if not autoapply and not flow.hideapplybtn then %>
  12. <input class="cbi-button cbi-button-apply" type="submit" name="cbi.apply" value="<%:Save & Apply%>" />
  13. <% end %>
  14. <% if not flow.hidesavebtn then %>
  15. <input class="cbi-button cbi-button-save" type="submit" value="<%:Save%>" />
  16. <% end %>
  17. <% if not flow.hideresetbtn then %>
  18. <input class="cbi-button cbi-button-reset" type="button" value="<%:Reset%>" onclick="location.href='<%=REQUEST_URI%>'" />
  19. <% end %>
  20. <script type="text/javascript">cbi_d_update();</script>
  21. </div>
  22. <%- end -%>
  23. </form>
  24. <%+footer%>