1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 02:11:34 +02:00
invoiceninja/app/views/accounts/import_export.blade.php
2014-02-23 17:10:56 +01:00

17 lines
604 B
PHP
Executable File

@extends('accounts.nav')
@section('content')
@parent
{{ Former::open_for_files('company/import_map')->addClass('col-md-9 col-md-offset-1') }}
{{ Former::legend('Import Client Data') }}
{{ Former::file('file')->label('Select CSV file') }}
{{ Former::actions( Button::lg_info_submit('Upload')->append_with_icon('open') ) }}
{{ Former::close() }}
{{ Former::open('company/export')->addClass('col-md-9 col-md-offset-1') }}
{{ Former::legend('Export Client Data') }}
{{ Former::actions( Button::lg_primary_submit('Download')->append_with_icon('download-alt') ) }}
{{ Former::close() }}
@stop