Ignore:
Timestamp:
10/24/21 20:55:11 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
develop, master
Children:
7043def
Parents:
e0d3f94
Message:

bug fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • resources/views/dashboard/folders/files.blade.php

    re0d3f94 r0df7a93  
    99            <div class="card">
    1010                <div class="card-body">
     11                    @if(auth()->user()->hasPermission('manage_all_folders'))
    1112                    <a class="btn btn-secondary btn-block text-white" href="javascript:void(0)" data-target="#editModal_{{$folder->id}}" data-toggle="modal">
    1213                        Upload
    1314                    </a>
     15                        @endif
    1416                </div>
    1517                <div class="app-sidebar-menu">
     
    3537                <div class="action-left">
    3638                    <ul class="list-inline">
     39                        @if(auth()->user()->hasPermission('manage_all_folders'))
    3740                        <li class="list-inline-item mb-0">
    3841                            <a href="#" class="btn btn-outline-light dropdown-toggle" data-toggle="dropdown">
     
    4346                                    Upload
    4447                                </a>
    45 
    4648                            </div>
    4749                        </li>
     50                        @endif
    4851                        <li class="list-inline-item mb-0">
     52                            @if(auth()->user()->hasPermission('download_data'))
    4953                            <a href="{{ route("dashboard.folders.downloadFolder", ['id' => $folder->id]) }}" class="btn btn-outline-light">
    5054                                Download folder
    5155                            </a>
     56                                @endif
    5257                        </li>
    5358                    </ul>
     
    100105                                    </a>
    101106                                    <div class="dropdown-menu dropdown-menu-right">
     107                                        @if(auth()->user()->hasPermission('manage_all_files'))
    102108                                        <a href="javascript:void(0)" class="dropdown-item" data-toggle="modal" data-target="#editFileModal_{{$file->id}}">
    103109                                            Rename
    104110                                        </a>
     111                                        @endif
     112                                        @if(auth()->user()->hasPermission('download_data'))
    105113                                        <a href="{{ route("dashboard.files.downloadFile", $file->id) }}" class="dropdown-item">
    106114                                            Download
    107115                                        </a>
     116                                            @endif
     117                                            @if(auth()->user()->hasPermission('manage_all_files'))
    108118                                        <a href="javascript:void(0)" class="dropdown-item" data-toggle="modal" data-target="#deleteModal_{{$file->id}}">
    109119                                            Delete
    110120                                        </a>
     121                                                @endif
    111122                                    </div>
    112123                                </div>
Note: See TracChangeset for help on using the changeset viewer.