@extends('layouts.app') @section('title', $project . ' Targets · QA Dashboard') @section('content')

{{ $project }} · Quarter Targets @if ($quarter)· {{ $quarter }}@endif

@if (count($quarters) > 1)
@endif
@if (session('status'))
{{ session('status') }}
@endif @if (! $quarter)

No targets imported yet for {{ $project }}. Upload the BA sheet in Settings → Import Dashboard.

@else
{{ $percent }}% of quarter targets done ({{ $done }}/{{ $total }})
{{ $done }} done {{ $matched - $done }} in progress {{ count($pending) }} unmatched
@endif
@if ($quarter && count($pending))

Needs matching · {{ count($pending) }} keyless rows

These sheet rows have no Jira key. Pick the matching Jira story (or “None of these”).

@foreach ($pending as $s) @endforeach
@endif @if ($quarter && count($rows))

Target stories · {{ count($rows) }} matched

@foreach ($rows as $r) @endforeach
Target storyTypeJiraStatus
{{ $r['title'] }} @if ($r['key']){{ $r['key'] }}@else —@endif @if ($r['raw_status'])@else @endif
@endif @endsection