Remove all code related to the CSV importer in preparation of #262

Signed-off-by: James Cole <thegrumpydictator@gmail.com>
This commit is contained in:
James Cole
2016-05-22 20:18:16 +02:00
parent f8eb1fa44a
commit 288e713f94
64 changed files with 14 additions and 4677 deletions

View File

@@ -110,25 +110,15 @@
</li>
<!-- import and export -->
<li class="{{ activeRoutePartial('export') }} {{ activeRoutePartial('csv') }} treeview">
<li class="{{ activeRoutePartial('export') }} treeview">
<a href="#">
<i class="fa fa-arrows-alt fa-fw"></i>
<span>
{% if Config.get('firefly.csv_import_enabled') %}
{{ 'import_and_export'|_ }}
{% else %}
{{ 'export_data'|_ }}
{% endif %}
{{ 'import_and_export'|_ }}
</span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
{% if Config.get('firefly.csv_import_enabled') %}
<li class="{{ activeRoutePartial('csv') }}">
<a href="{{ route('csv.index') }}"><i class="fa fa-file-text-o fa-fw"></i> {{ 'csv_import'|_ }}</a>
</li>
{% endif %}
<li class="{{ activeRoutePartial('export') }}">
<a href="{{ route('export.index') }}"><i class="fa fa-file-archive-o fa-fw"></i> {{ 'export_data'|_ }}</a>
</li>