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

71 lines
2.6 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-11 16:52:10 +00:00
<i class="fa fa-file"></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>
<th>Editor</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 }}
</td>
2019-04-11 16:52:10 +00:00
@if ($dataset->server_state == "approved")
<td>editor: {{ optional($dataset->editor)->login }}</td>
2019-04-10 08:54:15 +00:00
@endif
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>
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