2019-12-25 22:35:20 +01:00
|
|
|
@extends('layout.app')
|
|
|
|
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
|
|
|
|
@section('left-menu')
|
|
|
|
@parent
|
|
|
|
<ul>
|
|
|
|
<a href="sprzet/add"><li>Dodaj<img src="../img/left_menu_icon/add.png"></li></a>
|
|
|
|
<li>Edytuj<img src="../img/left_menu_icon/edit.png"></li>
|
|
|
|
<li>Usuń<img src="../img/left_menu_icon/delete.png"></li>
|
|
|
|
</ul>
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('center-area')
|
|
|
|
@parent
|
|
|
|
|
|
|
|
@if( auth()->check())
|
|
|
|
@if( auth()->user()->fireStationID == NULL)
|
|
|
|
Jednostka nie istnieje
|
|
|
|
@else
|
|
|
|
<p align='center'>
|
|
|
|
<form method="POST" action="/szkolenia">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="name">Nazwa Szkolenia/Badana:</label>
|
|
|
|
<input type="text" class="form-control" id="name" name="name" value="{{ old('name') }} ">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<button style="cursor:pointer" type="submit" class="btn btn-primary">Dodaj</button>
|
|
|
|
</div>
|
|
|
|
@include('inc.formerrors')
|
|
|
|
</form>
|
|
|
|
<table class='firefighterViewTable'>
|
|
|
|
<tr class='table-header'>
|
|
|
|
<td>Nazwa Szkolenia</td>
|
|
|
|
<td>Ilość z ukończonym</td>
|
|
|
|
<td>Akcje</td>
|
|
|
|
@foreach($trainings as $training)
|
|
|
|
<tr>
|
2020-01-03 05:13:22 +01:00
|
|
|
<form action="{{ route('trainings.destroy', $training->id)}}" method="post">
|
2019-12-25 22:35:20 +01:00
|
|
|
<td id="name{{ $training->id }}">{{ $training->trainingName }}</td>
|
|
|
|
<td id="amount{{ $training->id }}">5</td>
|
|
|
|
<td><input type="button" onclick="showMoreInformation('{{$training->id}}')" id="more{{$training->id}}" value="Więcej">
|
2020-01-03 05:13:22 +01:00
|
|
|
<a href="{{ URL::asset('szkolenia/addTrainingsFireFighters/'.$training->id) }}"><input type="button" onclick="" value="Zarządzaj"></a>
|
2019-12-25 22:35:20 +01:00
|
|
|
{{ csrf_field() }}
|
|
|
|
@method('DELETE')
|
|
|
|
<button class="btn btn-danger" type="submit">Usuń</button>
|
|
|
|
</td>
|
|
|
|
</form>
|
|
|
|
</tr>
|
|
|
|
<tr id="moreInformation{{$training->id}}" style="visibility:collapse;" bgcolor="#C0C0C0">
|
|
|
|
<td colspan="3">
|
|
|
|
<table>
|
|
|
|
|
|
|
|
<thead>
|
|
|
|
<td>Imię i Nazwisko</td>
|
|
|
|
<td>Ważne od:</td>
|
|
|
|
<td>Ważne do:</td>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
@foreach($fireFighters[$training->id] as $fireFighter)
|
|
|
|
@if($fireFighter->dateOfComplete != null and $fireFighter->dateOfExpiry != null)
|
|
|
|
<tr id="{{$fireFighter->userID}}">
|
|
|
|
<td>{{$fireFighter->name}} {{$fireFighter->surname}}</td>
|
|
|
|
<td>{{$fireFighter->dateOfComplete}}</td>
|
|
|
|
<td>{{$fireFighter->dateOfExpiry}}</td>
|
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
@endif
|
|
|
|
@else
|
|
|
|
Brak autoryzacji
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function showMoreInformation(operationID){
|
|
|
|
if( $('#more'+operationID).val() == "Więcej"){
|
|
|
|
$('#more'+operationID).val("Ukryj");
|
|
|
|
$("#moreInformation"+operationID).css('visibility', 'visible');
|
|
|
|
} else{
|
|
|
|
$('#more'+operationID).val("Więcej");
|
|
|
|
$("#moreInformation"+operationID).css('visibility', 'collapse');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|