@extends('layouts.simple') @section('body')
{{ method_field('put') }} {{ csrf_field() }}

{{ trans('preferences.shortcuts_interface') }}

{{ trans('preferences.shortcuts_toggle_desc') }} {{ trans('preferences.shortcuts_customize_desc') }}

@include('form.toggle-switch', [ 'name' => 'enabled', 'value' => $enabled, 'label' => trans('preferences.shortcuts_toggle_label'), ])

{{ trans('preferences.shortcuts_section_navigation') }}

@include('users.preferences.parts.shortcut-control', ['label' => trans('common.homepage'), 'id' => 'home_view']) @include('users.preferences.parts.shortcut-control', ['label' => trans('entities.shelves'), 'id' => 'shelves_view']) @include('users.preferences.parts.shortcut-control', ['label' => trans('entities.books'), 'id' => 'books_view']) @include('users.preferences.parts.shortcut-control', ['label' => trans('settings.settings'), 'id' => 'settings_view']) @include('users.preferences.parts.shortcut-control', ['label' => trans('entities.my_favourites'), 'id' => 'favourites_view'])
@include('users.preferences.parts.shortcut-control', ['label' => trans('common.view_profile'), 'id' => 'profile_view']) @include('users.preferences.parts.shortcut-control', ['label' => trans('auth.logout'), 'id' => 'logout']) @include('users.preferences.parts.shortcut-control', ['label' => trans('common.global_search'), 'id' => 'global_search']) @include('users.preferences.parts.shortcut-control', ['label' => trans('common.next'), 'id' => 'next']) @include('users.preferences.parts.shortcut-control', ['label' => trans('common.previous'), 'id' => 'previous'])

{{ trans('preferences.shortcuts_section_actions') }}

@include('users.preferences.parts.shortcut-control', ['label' => trans('common.new'), 'id' => 'new']) @include('users.preferences.parts.shortcut-control', ['label' => trans('common.edit'), 'id' => 'edit']) @include('users.preferences.parts.shortcut-control', ['label' => trans('common.copy'), 'id' => 'copy']) @include('users.preferences.parts.shortcut-control', ['label' => trans('common.delete'), 'id' => 'delete']) @include('users.preferences.parts.shortcut-control', ['label' => trans('common.favourite'), 'id' => 'favourite'])
@include('users.preferences.parts.shortcut-control', ['label' => trans('entities.export'), 'id' => 'export']) @include('users.preferences.parts.shortcut-control', ['label' => trans('common.sort'), 'id' => 'sort']) @include('users.preferences.parts.shortcut-control', ['label' => trans('entities.permissions'), 'id' => 'permissions']) @include('users.preferences.parts.shortcut-control', ['label' => trans('common.move'), 'id' => 'move']) @include('users.preferences.parts.shortcut-control', ['label' => trans('entities.revisions'), 'id' => 'revisions'])

{{ trans('preferences.shortcuts_overlay_desc') }}

@stop