2021-01-31 20:26:24 +01:00
|
|
|
{% extends './v1/layout/default' %}
|
2019-12-27 10:59:31 +01:00
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
|
|
|
{{ Breadcrumbs.render(Route.getCurrentRoute.getName) }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
|
|
|
<div class="box box-primary">
|
|
|
|
<div class="box-header with-border">
|
|
|
|
<h3 class="box-title">{{ 'export_data_main_title'|_ }}</h3>
|
|
|
|
</div>
|
|
|
|
<div class="box-body">
|
|
|
|
<p>
|
|
|
|
{{ 'export_data_expl'|_ }}
|
|
|
|
</p>
|
2021-06-03 12:08:04 +02:00
|
|
|
<form action="{{ route('export.export') }}" method="post">
|
|
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
|
2021-06-11 19:50:05 +02:00
|
|
|
<button type="submit"><span class="fa fa-fw fa-download"></span> {{ 'export_data_all_transactions'|_ }}</button>
|
2021-06-03 12:08:04 +02:00
|
|
|
</form>
|
2019-12-27 10:59:31 +01:00
|
|
|
<p>
|
|
|
|
{{ 'export_data_advanced_expl'|_ }}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block styles %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
{% endblock %}
|