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

17 lines
628 B
PHP
Raw Normal View History

2014-02-18 16:07:22 +01:00
@extends('accounts.nav')
@section('content')
@parent
{{ Former::open_for_files('company/import_map')->addClass('col-md-9 col-md-offset-1') }}
2014-04-01 12:30:43 +02:00
{{ Former::legend('import_clients') }}
{{ Former::file('file')->label(trans('texts.csv_file')) }}
{{ Former::actions( Button::lg_info_submit(trans('texts.upload'))->append_with_icon('open') ) }}
2014-02-18 16:07:22 +01:00
{{ Former::close() }}
{{ Former::open('company/export')->addClass('col-md-9 col-md-offset-1') }}
2014-04-01 12:30:43 +02:00
{{ Former::legend('export_clients') }}
{{ Former::actions( Button::lg_primary_submit(trans('texts.download'))->append_with_icon('download-alt') ) }}
2014-02-18 16:07:22 +01:00
{{ Former::close() }}
@stop