Changeset aab55f4 for resources/views/dashboard
- Timestamp:
- 10/26/21 22:58:47 (3 years ago)
- Branches:
- develop, master
- Children:
- 68b1a22
- Parents:
- cbb901a
- Location:
- resources/views/dashboard
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/views/dashboard/departments/index.blade.php
rcbb901a raab55f4 20 20 <div class="dropdown"> 21 21 @if(auth()->user()->hasPermission('manage_all_departments')) 22 < buttondata-toggle="modal" data-target="#createModal" class="btn btn-primary text-white">23 <i class="fa fa-plus pr-1"></i>New24 </ button>22 <a href="javascript:void(0)" data-toggle="modal" data-target="#createModal" class="btn btn-primary text-white"> 23 New 24 </a> 25 25 @endif 26 26 27 27 @if(auth()->user()->hasPermission('download_data')) 28 28 <a href="{{ route("dashboard.departments.downloadAll") }}" class="btn btn-danger text-white"> 29 <i class="fa fa-download pr-1"></i>Download29 Download 30 30 </a> 31 31 @endif 32 32 @if(auth()->user()->hasPermission('export_data')) 33 33 <a href="{{ route('dashboard.departments.export') }}" class="btn btn-success text-white"> 34 <i class="fa fa-table pr-1"></i>Export</a>34 Export</a> 35 35 @endif 36 36 </div> -
resources/views/dashboard/files/index.blade.php
rcbb901a raab55f4 15 15 <a href="{{ url('/') }}">Dashboard</a> 16 16 </li> 17 <li class="breadcrumb-item active" aria-current="page"> Files</li>17 <li class="breadcrumb-item active" aria-current="page">Departments</li> 18 18 </ol> 19 19 </nav> 20 20 <div class="dropdown"> 21 21 @if(auth()->user()->hasPermission('manage_all_files')) 22 <a href="javascript:void(0)" data-toggle="modal" data-target="#createModal" class="btn btn-primary text-white"> 23 <i class="fa fa-upload pr-1"></i> Upload 24 </a> 22 <a href="javascript:void(0)" data-toggle="modal" data-target="#createModal" class="btn btn-primary text-white">Add</a> 25 23 @endif 26 24 @if(auth()->user()->hasPermission('download_data')) 27 <a href="{{ route("dashboard.departments.downloadAll") }}" class="btn btn-danger text-white"> 28 <i class="fa fa-download pr-1"></i> Download 29 </a> 25 <a href="{{ route("dashboard.departments.downloadAll") }}" class="btn btn-danger text-white">Download</a> 30 26 @endif 31 27 @if(auth()->user()->hasPermission('export_data')) 32 <a href="{{ route('dashboard.files.export') }}" class="btn btn-success text-white"> 33 <i class="fa fa-table pr-1"></i> Export 34 </a> 28 <a href="{{ route('dashboard.files.export') }}" class="btn btn-success text-white">Export</a> 35 29 @endif 36 30 </div> -
resources/views/dashboard/folders/index.blade.php
rcbb901a raab55f4 255 255 256 256 <div class="modal fade" id="deleteModal_{{$folder->id}}" tabindex="-1" role="dialog" aria-hidden="true"> 257 <div class="modal-dialog modal-dialog-centered " role="document">257 <div class="modal-dialog modal-dialog-centered modal-lg" role="document"> 258 258 <div class="modal-content"> 259 259 <div class="modal-header"> -
resources/views/dashboard/users/index.blade.php
rcbb901a raab55f4 23 23 @if(auth()->user()->hasPermission('manage_all_users')) 24 24 <a href="javascript:void(0)" data-toggle="modal" data-target="#createModal" class="btn btn-primary text-white"> 25 <i class="fa fa-plus pr-1"></i>New25 New 26 26 </a> 27 27 @endif 28 28 @if(auth()->user()->hasPermission('export_data')) 29 29 <a href="{{ route('dashboard.users.export') }}" class="btn btn-success text-white"> 30 <i class="fa fa-table pr-1"></i>Export30 Export 31 31 </a> 32 32 @endif
Note:
See TracChangeset
for help on using the changeset viewer.