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/files/index.blade.php

    re0d3f94 r0df7a93  
    2020        </nav>
    2121        <div class="dropdown">
     22            @if(auth()->user()->hasPermission('manage_all_files'))
    2223            <a href="javascript:void(0)" data-toggle="modal" data-target="#createModal" class="btn btn-primary text-white">
    2324                <i class="fa fa-upload pr-1"></i> Upload
    2425            </a>
     26            @endif
     27            @if(auth()->user()->hasPermission('download_data'))
    2528            <a href="{{ route("dashboard.departments.downloadAll") }}" class="btn btn-danger text-white">
    2629                <i class="fa fa-download pr-1"></i> Download
    2730            </a>
     31            @endif
     32            @if(auth()->user()->hasPermission('export_data'))
    2833            <a href="{{ route('dashboard.files.export') }}" class="btn btn-success text-white">
    2934                <i class="fa fa-table pr-1"></i> Export
    3035            </a>
     36                @endif
    3137        </div>
    3238    </div>
     
    103109                                            </svg></button>
    104110                                    </td>
     111                                    @if(auth()->user()->hasPermission('manage_all_files'))
    105112                                    <td>
    106113                                        <a href="javascript:void(0)" class="text-secondary" data-toggle="modal" data-target="#editModal_{{$file->id}}" title="Edit">
     
    114121                                        </a>
    115122                                    </td>
     123                                    @else
     124                                <td></td>
     125                                        @endif
    116126                                </tr>
    117127                                <div class="modal fade" id="deleteModal_{{$file->id}}" tabindex="-1" role="dialog" aria-hidden="true">
Note: See TracChangeset for help on using the changeset viewer.