@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 }}@endif @if ($storage->source == 'RackspaceSource'){{ $storage->container_name }} - {{ $storage->service_region }}@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