2018-10-18 14:51:46 +00:00
|
|
|
@extends('settings.layouts.app')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="header">
|
|
|
|
<h3 class="header-title">
|
|
|
|
<i class="fa fa-file"></i> Datasets to be processed
|
|
|
|
</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>
|
|
|
|
<th>Server State</th>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
@foreach($datasets as $dataset)
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
@if ($dataset->titles()->first())
|
|
|
|
{{ $dataset->titles()->first()->value }}
|
|
|
|
@else
|
|
|
|
no title
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{ $dataset->id }}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{ $dataset->server_state }}
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td>
|
2018-10-19 10:54:40 +00:00
|
|
|
@if ($dataset->server_state == "unpublished")
|
|
|
|
<a href="" class="pure-button button-small is-success">Publish</a>
|
|
|
|
<a href="" class="pure-button button-small is-success">Restrict</a>
|
|
|
|
@else
|
|
|
|
<a href="" class="pure-button button-small is-warning">Finish</a>
|
|
|
|
@endif
|
2018-10-18 14:51:46 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@stop
|