diff options
author | Steven Barth <steven@midlink.org> | 2009-11-23 14:10:14 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-11-23 14:10:14 +0000 |
commit | edb5427181412a69be73b7ccda199841d1e0092b (patch) | |
tree | da327d1e8d99f206e4f4114cefa06430a0599a51 /libs/cbi | |
parent | 952836d1ef0b2e78a6c6909a87d33644941b638c (diff) |
Correct order of wizard buttons
Diffstat (limited to 'libs/cbi')
-rw-r--r-- | libs/cbi/luasrc/view/cbi/delegator.htm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libs/cbi/luasrc/view/cbi/delegator.htm b/libs/cbi/luasrc/view/cbi/delegator.htm index a4a62af64..ed7c6b4ea 100644 --- a/libs/cbi/luasrc/view/cbi/delegator.htm +++ b/libs/cbi/luasrc/view/cbi/delegator.htm @@ -18,20 +18,20 @@ $Id$ <input type="hidden" name="cbi.delg.path" value="<%=x%>" /> <% end %> <% if not self.disallow_pageactions then %> -<% if self.allow_back and self:get_prev(self.current) then %> - <input class="cbi-button cbi-button-back" type="submit" name="cbi.delg.back" value="<%:« Back%>" /> -<% end %> -<% if self.allow_reset then %> - <input class="cbi-button cbi-button-reset" type="reset" value="<%:Reset%>" /> -<% end %> -<% if self.allow_cancel then %> - <input class="cbi-button cbi-button-cancel" type="submit" name="cbi.cancel" value="<%:Cancel%>" /> -<% end %> <% if self.allow_finish and not self:get_next(self.current) then %> <input class="cbi-button cbi-button-finish" type="submit" value="<%:Finish%>" /> <% elseif self:get_next(self.current) then %> <input class="cbi-button cbi-button-next" type="submit" value="<%:Next »%>" /> <% end %> +<% if self.allow_cancel then %> + <input class="cbi-button cbi-button-cancel" type="submit" name="cbi.cancel" value="<%:Cancel%>" /> +<% end %> +<% if self.allow_reset then %> + <input class="cbi-button cbi-button-reset" type="reset" value="<%:Reset%>" /> +<% end %> +<% if self.allow_back and self:get_prev(self.current) then %> + <input class="cbi-button cbi-button-back" type="submit" name="cbi.delg.back" value="<%:« Back%>" /> +<% end %> <% end %> <script type="text/javascript">cbi_d_update();</script> </div>
\ No newline at end of file |