mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-10 23:45:48 -06:00
28 lines
781 B
Twig
28 lines
781 B
Twig
{% extends "./layout/default" %}
|
|
|
|
{% 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">
|
|
<h3 class="box-title">{{ 'import_finished'|_ }}</h3>
|
|
</div>
|
|
<div class="box-body">
|
|
This import has beeen done. Link to tag or set of transactions.
|
|
|
|
<p>
|
|
{{ 'import_share_configuration'|_ }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% block scripts %}
|
|
{% endblock %}
|
|
{% block styles %}
|
|
{% endblock %}
|