You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
563 B
22 lines
563 B
@extends('layouts.app')
|
|
|
|
@section('title')
|
|
@yield('subtitle', __('job.detail')) - {{ $job->name }}
|
|
@endsection
|
|
|
|
@section('content')
|
|
@include('jobs.partials.breadcrumb')
|
|
|
|
<h1 class="page-header">
|
|
<div class="pull-right">
|
|
@yield('action-buttons')
|
|
{{ link_to_route('projects.jobs.index', __('job.back_to_index'), [$job->project_id, '#' . $job->id], ['class' => 'btn btn-default']) }}
|
|
</div>
|
|
{{ $job->name }} <small>@yield('subtitle', __('job.detail'))</small>
|
|
</h1>
|
|
|
|
@include('jobs.partials.nav-tabs')
|
|
|
|
@yield('content-job')
|
|
|
|
@endsection
|