Correct order of wizard buttons
This commit is contained in:
parent
952836d1ef
commit
edb5427181
1 changed files with 9 additions and 9 deletions
|
@ -18,20 +18,20 @@ $Id$
|
||||||
<input type="hidden" name="cbi.delg.path" value="<%=x%>" />
|
<input type="hidden" name="cbi.delg.path" value="<%=x%>" />
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if not self.disallow_pageactions then %>
|
<% 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 %>
|
<% if self.allow_finish and not self:get_next(self.current) then %>
|
||||||
<input class="cbi-button cbi-button-finish" type="submit" value="<%:Finish%>" />
|
<input class="cbi-button cbi-button-finish" type="submit" value="<%:Finish%>" />
|
||||||
<% elseif self:get_next(self.current) then %>
|
<% elseif self:get_next(self.current) then %>
|
||||||
<input class="cbi-button cbi-button-next" type="submit" value="<%:Next »%>" />
|
<input class="cbi-button cbi-button-next" type="submit" value="<%:Next »%>" />
|
||||||
<% end %>
|
<% 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 %>
|
<% end %>
|
||||||
<script type="text/javascript">cbi_d_update();</script>
|
<script type="text/javascript">cbi_d_update();</script>
|
||||||
</div>
|
</div>
|
Loading…
Reference in a new issue