Bank transfer: Freshen up export templates a little

This commit is contained in:
Raphael Michel
2021-01-24 22:05:18 +01:00
parent aeba2a1e26
commit a3ff3cda12
2 changed files with 8 additions and 8 deletions

View File

@@ -81,7 +81,7 @@
<span class="fa fa-download"></span> {% trans "Download CSV" %}
</a>
{% if export.currency == "EUR" %}
<a class="btn btn-secondary"
<a class="btn btn-default"
href="{% url "plugins:banktransfer:refunds.sepa" organizer=request.organizer.slug event=export.event.slug id=export.id %}">
{% trans "SEPA XML" %}
</a>
@@ -92,7 +92,7 @@
<span class="fa fa-download"></span> {% trans "Download CSV" %}
</a>
{% if export.currency == "EUR" %}
<a class="btn btn-secondary"
<a class="btn btn-default"
href="{% url "plugins:banktransfer:refunds.sepa" organizer=export.organizer.slug id=export.id %}">
{% trans "SEPA XML" %}
</a>

View File

@@ -27,13 +27,13 @@
<form method="post" class="form-horizontal">
{% csrf_token %}
<div class="row">
<div class="col-lg-8 col-md-12">
{% bootstrap_form form layout="control" %}
</div>
{% bootstrap_form form layout="control" %}
<div class="form-group submit-group">
<button type="submit" class="btn btn-primary btn-save">
<span class="fa fa-download"></span> {% trans "Download" %}
</button>
</div>
<button class="btn btn-primary"><span class="fa fa-download"></span> {% trans "Download" %}</button>
</form>
{% endblock %}