mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			786 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			786 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% extends "./layout/default.twig" %}
 | |
| 
 | |
| {% 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 %}
 |