2016-11-06 16:17:22 +01:00
|
|
|
{% extends "./layout/default" %}
|
2016-05-22 21:11:30 +02:00
|
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
|
|
|
|
{{ Breadcrumbs.renderIfExists }}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
{% block content %}
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
|
|
|
<div class="box box-default">
|
|
|
|
|
<div class="box-header with-border">
|
2017-06-24 06:57:24 +02:00
|
|
|
<h3 class="box-title">{{ 'import_index_title'|_ }}</h3>
|
2016-05-22 21:11:30 +02:00
|
|
|
</div>
|
|
|
|
|
<div class="box-body">
|
2016-10-14 16:51:38 +02:00
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-8">
|
|
|
|
|
<p>
|
2017-08-04 15:56:14 +02:00
|
|
|
{{ 'import_general_index_intro'|_ }}
|
2016-10-14 16:51:38 +02:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2016-07-20 15:47:30 +02:00
|
|
|
|
2016-05-22 21:11:30 +02:00
|
|
|
<div class="row">
|
2017-12-11 15:17:02 +01:00
|
|
|
{# file import #}
|
2017-12-09 12:23:28 +01:00
|
|
|
<div class="col-lg-1 text-center">
|
|
|
|
|
<a href="{{ route('import.file.index') }}">
|
|
|
|
|
<img src="images/logos/csv.png" alt="bunq"/><br />
|
2017-11-03 14:53:00 +01:00
|
|
|
{{ 'import_general_index_csv_file'|_ }}
|
2017-08-04 15:56:14 +02:00
|
|
|
</a>
|
2017-12-09 12:23:28 +01:00
|
|
|
</div>
|
2017-12-11 15:17:02 +01:00
|
|
|
{# bunq import #}
|
2017-12-09 12:23:28 +01:00
|
|
|
<div class="col-lg-1 text-center">
|
|
|
|
|
<a href="{{ route('import.bank.prerequisites', ['bunq']) }}">
|
2017-08-04 15:56:14 +02:00
|
|
|
<img src="images/logos/bunq.png" alt="bunq"/><br />
|
2017-12-11 15:17:02 +01:00
|
|
|
{{ 'import_from_bunq'|_ }}
|
2017-08-04 15:56:14 +02:00
|
|
|
</a>
|
2017-12-09 12:23:28 +01:00
|
|
|
</div>
|
2017-12-11 15:17:02 +01:00
|
|
|
{# import from Spectre #}
|
2017-12-09 12:23:28 +01:00
|
|
|
<div class="col-lg-1 text-center">
|
|
|
|
|
<a href="{{ route('import.bank.prerequisites', ['spectre']) }}">
|
|
|
|
|
<img src="images/logos/spectre.png" alt="Spectre"/><br />
|
2017-12-11 15:17:02 +01:00
|
|
|
{{ 'import_using_spectre'|_ }}
|
2017-12-09 12:23:28 +01:00
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-1 text-center">
|
|
|
|
|
{# import from Plaid #}
|
|
|
|
|
<a href="{{ route('import.bank.prerequisites', ['plaid']) }}">
|
|
|
|
|
<img src="images/logos/plaid.png" alt="Plaid"/><br />
|
2017-12-11 15:17:02 +01:00
|
|
|
{{ 'import_using_plaid'|_ }}
|
2017-12-09 12:23:28 +01:00
|
|
|
</a>
|
|
|
|
|
</div>
|
2017-08-04 15:56:14 +02:00
|
|
|
</div>
|
2016-05-22 21:11:30 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
{% block scripts %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
{% block styles %}
|
|
|
|
|
{% endblock %}
|