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

    re0d3f94 r0df7a93  
    2020        </nav>
    2121        <div class="dropdown">
     22            @if(auth()->user()->hasPermission('manage_all_departments'))
    2223            <a href="javascript:void(0)" data-toggle="modal" data-target="#createModal" class="btn btn-primary text-white">
    2324                <i class="fa fa-plus pr-1"></i> New
    2425            </a>
     26            @endif
     27
     28                @if(auth()->user()->hasPermission('download_data'))
    2529            <a href="{{ route("dashboard.departments.downloadAll") }}" class="btn btn-danger text-white">
    2630                <i class="fa fa-download pr-1"></i> Download
    2731            </a>
     32                @endif
     33            @if(auth()->user()->hasPermission('export_data'))
    2834            <a href="{{ route('dashboard.departments.export') }}" class="btn btn-success text-white">
    2935                <i class="fa fa-table pr-1"></i> Export</a>
     36            @endif
    3037        </div>
    3138    </div>
     
    7380                                                </svg></button>
    7481                                    </td>
     82                                    @if(auth()->user()->hasPermission('manage_all_departments'))
    7583                                    <td>
    7684                                        <a href="javascript:void(0)" class="text-secondary" data-toggle="modal" data-target="#editModal_{{$department->id}}" title="Edit">
    7785                                            <i class="ti-pencil"></i>
    7886                                        </a>
    79                                         <a href="{{ route("dashboard.departments.downloadDepartment", ['id' => $department->id]) }}" class="text-danger ml-2"title="Delete">
     87                                        @if(auth()->user()->hasPermission('download_data'))
     88                                        <a href="{{ route("dashboard.departments.downloadDepartment", ['id' => $department->id]) }}" class="text-danger ml-2"title="Download">
    8089                                            <i class="ti-download"></i>
    8190                                        </a>
     91                                        @endif
    8292                                        <a href="javascript:void(0)" class="text-danger ml-2" data-toggle="modal" data-target="#deleteModal_{{$department->id}}" title="Delete">
    8393                                            <i class="ti-trash"></i>
    8494                                        </a>
    8595                                    </td>
     96                                    @else
     97                                    <td></td>
     98                                        @endif
    8699                                </tr>
    87100                                <div class="modal fade" id="deleteModal_{{$department->id}}" tabindex="-1" role="dialog" aria-hidden="true">
     
    99112                                                    @method('DELETE')
    100113                                                    <p>Are you sure you want to delete department {{$department->name}} with code: {{$department->code}}?</p>
    101                                                     <p>Number of documents associated: <a href="{{ route("dashboard.folders.index", ['id' => $department->id]) }}" class="text-linkedin">{{$department->folder()->count()}}</a></p>
     114                                                    <p>Number of folders associated: <a href="{{ route("dashboard.folders.index", ['id' => $department->id]) }}" class="text-linkedin">{{$department->folder()->count()}}</a></p>
    102115                                                    <div class="modal-footer">
    103116                                                        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close
Note: See TracChangeset for help on using the changeset viewer.