Changeset 0c07a90 for resources/views/dashboard
- Timestamp:
- 02/24/21 17:09:19 (4 years ago)
- Branches:
- master
- Children:
- f457265
- Parents:
- d25ba66
- Location:
- resources/views/dashboard
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/views/dashboard/posts/edit.blade.php
rd25ba66 r0c07a90 17 17 Current phase: {{ $post->review->getPhase()->name }} 18 18 @if($post->review->canReview()) 19 < button class="btn btn-primary">Approve</button>19 <a href="javascript:void(0)" class="btn btn-primary actionLink" style="cursor: pointer;" data-action="{{ route("dashboard.posts.confirm", ["id" => $post->id]) }}" data-method="patch"><i class="text-light fe fe-check"></i> Confirm </a> 20 20 @endif 21 21 </p> -
resources/views/dashboard/settings/index.blade.php
rd25ba66 r0c07a90 25 25 <div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" 26 26 aria-orientation="vertical"> 27 <a class="nav-link pt-2 pb-2" id="v-pills-home-tab" data-toggle="pill"27 <a class="nav-link active pt-2 pb-2" id="v-pills-home-tab" data-toggle="pill" 28 28 href="#v-pills-home" role="tab" aria-controls="v-pills-home" 29 29 aria-selected="true">Profile</a> … … 38 38 39 39 @if(auth()->user()->hasPermission("access_all_post_securities")) 40 <a class="nav-link activept-2 pb-2" id="v-pills-post-security-tab" data-toggle="pill"40 <a class="nav-link pt-2 pb-2" id="v-pills-post-security-tab" data-toggle="pill" 41 41 href="#v-pills-post-security" role="tab" aria-controls="v-pills-post-security" 42 42 aria-selected="false">Post Security</a> … … 47 47 <div class="col-md-8"> 48 48 <div class="tab-content" id="v-pills-tabContent"> 49 <div class="tab-pane fade " id="v-pills-home" role="tabpanel"49 <div class="tab-pane fade show active" id="v-pills-home" role="tabpanel" 50 50 aria-labelledby="v-pills-home-tab"> 51 51 … … 597 597 598 598 @if(auth()->user()->hasPermission("access_all_post_securities")) 599 <div class="tab-pane fade show active" id="v-pills-post-security" role="tabpanel"599 <div class="tab-pane fade" id="v-pills-post-security" role="tabpanel" 600 600 aria-labelledby="v-pills-post-security-tab"> 601 601 <fieldset class="form-fieldset">
Note:
See TracChangeset
for help on using the changeset viewer.