Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/FOUR-15732 Add Launchpad access #6967

Merged
merged 5 commits into from
Jul 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions resources/views/requests/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,15 @@ class="btn d-block mr-0 ml-auto button-collapse"
<i class="far fa-calendar-alt"></i>
<small>@{{ moment(statusDate).format() }}</small>
</li>
<li class="list-group-item">
<p class="section-title">{{ __('Process') }}</p>
{{ $request->name }}
<p class="launchpad-link">
<a href="{{route('process.browser.index', [$request->process_id])}}">
{{ __('Open Process Launchpad') }}
</a>
</p>
</li>
@if ($request->user_id)
<li class="list-group-item">
<p class="section-title">{{ __('Requested By') }}:</p>
Expand Down Expand Up @@ -916,5 +925,8 @@ classStatusCard() {
.card-header:first-child.text-status {
border-radius: 6px;
}
.launchpad-link {
margin-top: 5px;
}
</style>
@endsection
Loading