Make the back link appear like a normal link instead of a button (#139)
This commit is contained in:
committed by
GitHub
parent
5a4bb0d081
commit
4af0e277b4
@@ -9,7 +9,7 @@
|
|||||||
<div class="box-footer">
|
<div class="box-footer">
|
||||||
<input type="submit" value="{{ 'action.save'|trans }}" class="btn btn-primary" />
|
<input type="submit" value="{{ 'action.save'|trans }}" class="btn btn-primary" />
|
||||||
{% if back %}
|
{% if back %}
|
||||||
<a href="{{ back }}" class="btn btn-warning">{{ 'action.back'|trans }}</a>
|
<a href="{{ back }}" class="btn btn-link">{{ 'action.back'|trans }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{{ form_end(form) }}
|
{{ form_end(form) }}
|
||||||
|
|||||||
@@ -12,9 +12,8 @@
|
|||||||
<div class="box-footer">
|
<div class="box-footer">
|
||||||
<input type="submit" value="{{ 'action.delete'|trans }}" class="btn btn-danger" />
|
<input type="submit" value="{{ 'action.delete'|trans }}" class="btn btn-danger" />
|
||||||
{% if back %}
|
{% if back %}
|
||||||
<a href="{{ back }}" class="btn btn-primary">{{ 'action.back'|trans }}</a>
|
<a href="{{ back }}" class="btn btn-link">{{ 'action.back'|trans }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{{ form_end(form) }}
|
{{ form_end(form) }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user