%PDF- %PDF-
| Direktori : /www/loslex_o/demo/resources/views/contests/ |
| Current File : /www/loslex_o/demo/resources/views/contests/import-messages.blade.php |
<x-app-layout>
<x-slot name="pagetitle">{{ __('Import contest results') }}</x-slot>
<x-slot name="header"> <h2 class="text-gray-800 leading-tight">{{ __('Import contest results - problems') }}</h2> </x-slot>
<div class="m-auto">
@if (count($importer->errors))
<h2>{{ __('Errors') }}</h2>
<ul>
@foreach ($importer->errors as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
@endif
@if (count($importer->warnings))
<h2>{{ __('Warnings') }}</h2>
<ul>
@foreach ($importer->warnings as $warning)
<li>{{ $warning }}</li>
@endforeach
</ul>
@endif
<div class="mx-auto mt-6 w-fit grid grid-cols-3 grid-flow-row gap-4 justify-items-center">
@if (count($importer->errors) == 0 || true)
<div><a href="{{ route('contest.detailed-results', [$contestId]) }}"><x-primary-button title="{{ __('Go to detailed results') }}">{{ __('Display detailed results') }}</x-primary-button></a></div>
@endif
<div><a href="{{ route('contest.show', [$contestId]) }}"><x-primary-button title="{{ __('Go to the contest page') }}">{{ __('Display contest') }}</x-primary-button></a></div>
<div><a href="{{ route('contest.maintain', [$contestId]) }}"><x-primary-button title="{{ __('Go to the contest maintenance page') }}">{{ __('Contest maintenance') }}</x-primary-button></a></div>
</div>
</div>
</x-app-layout>