2016-11-06 01:11:43 -06:00
|
|
|
{% extends "./layout/default" %}
|
2016-08-13 16:28:01 -05: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">
|
|
|
|
<h3 class="box-title">{{ 'import_finished'|_ }}</h3>
|
|
|
|
</div>
|
|
|
|
<div class="box-body">
|
2016-12-18 02:27:27 -06:00
|
|
|
<p>
|
|
|
|
{{ 'import_finished_intro'|_ }}
|
|
|
|
</p>
|
|
|
|
{% if tagId > 0 %}
|
|
|
|
<p>
|
|
|
|
{{ trans('firefly.import_finished_text_with_link', {tag: tagId})|raw }}
|
|
|
|
</p>
|
|
|
|
{% else %}
|
|
|
|
<p>
|
|
|
|
{{ 'import_finished_text_without_link'|_ }}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
2016-08-13 16:28:01 -05:00
|
|
|
|
2016-10-14 09:51:38 -05:00
|
|
|
<p>
|
|
|
|
{{ 'import_share_configuration'|_ }}
|
|
|
|
</p>
|
2016-08-13 16:28:01 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block styles %}
|
|
|
|
{% endblock %}
|