tethys/resources/views/workflow/review/index.blade.php

82 lines
3.2 KiB
PHP
Raw Normal View History

2019-02-12 11:21:35 +00:00
@extends('settings.layouts.app')
@section('content')
<div class="header">
<h3 class="header-title">
2019-04-18 11:16:50 +00:00
<i class="fas fa-list"></i> REVIEW PAGE: Review approved datasets assigned to you
2019-02-12 11:21:35 +00:00
</h3>
</div>
<div class="pure-g box-content">
<div class="pure-u-1">
<table class="pure-table pure-table-horizontal">
<thead>
<th>Dataset Title</th>
<th>ID</th>
2019-04-10 08:54:15 +00:00
<th>Server State</th>
2019-05-28 17:02:21 +00:00
<th>Editor</th>
<th>remaining time</th>
<th></th>
2019-02-12 11:21:35 +00:00
</thead>
<tbody>
2019-04-10 08:54:15 +00:00
@foreach($datasets as $dataset)
@php
//if userid changed from last iteration, store new userid and change color
// $lastid = $detail->payment->userid;
if ($dataset->server_state == 'editor_accepted') {
$rowclass = 'editor_accepted';
} elseif ($dataset->server_state == 'released') {
$rowclass = 'released';
}
@endphp
2019-04-11 16:52:10 +00:00
<tr>
2019-02-12 11:21:35 +00:00
<td>
@if ($dataset->titles()->first())
{{ $dataset->titles()->first()->value }}
@else
no title
@endif
</td>
<td>
{{ $dataset->id }}
</td>
<td>
{{ $dataset->server_state }}
2019-05-28 17:02:21 +00:00
</td>
2019-04-11 16:52:10 +00:00
<td>editor: {{ optional($dataset->editor)->login }}</td>
2019-05-28 17:02:21 +00:00
<td>
{{-- @php
$dateDiff = $dataset['server_date_modified']->addDays(14);
$remainingDays = Carbon\Carbon::now()->diffInDays($dateDiff, false);
@endphp --}}
{{ $dataset->remaining_time . ' days' }}
</td>
2019-04-10 08:54:15 +00:00
2019-02-12 11:21:35 +00:00
<td>
2019-04-11 16:52:10 +00:00
@if ($dataset->server_state == "approved")
2019-04-17 14:01:38 +00:00
<a href="{{ URL::route('publish.workflow.review.review', $dataset->id) }}" class="pure-button">
2019-04-11 16:52:10 +00:00
<i class="fa fa-check"></i>
<span>Review</span>
</a>
<a href="{{ URL::route('publish.workflow.review.reject', $dataset->id) }}" class="pure-button">
<i class="fas fa-undo"></i>
<span>Reject</span>
</a>
2019-02-12 11:21:35 +00:00
@endif
</td>
{{-- <td>
@if ($dataset->server_state == "unpublished")
<a href="{{ URL::route('publish.review.changestate',['id' => $dataset->id, 'targetState' => 'published']) }}" class="pure-button button-small is-success">Publish</a>
@endif
</td> --}}
2019-02-12 11:21:35 +00:00
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@stop