first commit
This commit is contained in:
14
helix/templates/navigation_buttons.html.jinja
Normal file
14
helix/templates/navigation_buttons.html.jinja
Normal file
@@ -0,0 +1,14 @@
|
||||
<div class="navigation_buttons">
|
||||
<a class="back button" href="{{ context['steps'][context['current_step'] - 2][2] }}">Back</a>
|
||||
{% if context['steps']|length > context['current_step'] and not context.get('no_proceed') %}
|
||||
{% if not form or context['override_form'] %}
|
||||
<a class="button" href="{{ context['steps'][context['current_step']][2] }}" value="Next">Next</a>
|
||||
{% else %}
|
||||
{% if not context['hide_submit'] %}
|
||||
<input type="submit" class="button" name="submit_button" value="Next">
|
||||
{% else %}
|
||||
<input type="submit" class="button" name="submit_button" value="Next" style="display: none;">
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</div>
|
||||
Reference in New Issue
Block a user