@extends(Theme::viewName('layout')) @section('title', trans('admin.storage_title')) @section('breadcrumb') @endsection @section('content')

@lang('admin.list_storages_title')

@lang('admin.list_storages_intro')
@if (count($storageLocations) == 0)

@lang('admin.no_storages_title')

@lang('admin.no_storages_text')

@lang('admin.no_storages_text2')

@lang('admin.create_storage')

@else @foreach ($storageLocations as $storage)

@endforeach
{{ $storage->name }} @if ($storage->is_default) @endif @if (!$storage->is_active) @endif
@if ($storage->source == 'LocalFilesystemSource'){{ $storage->location }}@endif @if ($storage->source == 'OpenStackSource'){{ $storage->container_name }} · {{ $storage->service_name }}, {{ $storage->service_region }}@endif @if ($storage->source == 'AmazonS3Source') {{ $storage->container_name }} · {{ $storage->service_region }} @if ($storage->s3_signed_urls) @endif @endif @if ($storage->source == 'RackspaceSource'){{ $storage->container_name }} · {{ $storage->service_region }}@endif @if ($storage->source == 'DropboxSource') @if (empty($storage->access_token)) @lang('admin.storage_authorise_external_service_required') @else @lang('admin.storage_authorise_external_service_authorised') · @lang('admin.storage_authorise_external_service_refresh_authentication') @endif @endif
@if (!$storage->is_internal) @lang('forms.delete_action') @endif
{{ $storageLocations->links() }}

@lang('admin.legend')

@lang('admin.default_storage_legend')
@lang('admin.inactive_storage_legend')

@endif
@endsection