tethys/resources/views/publish/index.blade.php

52 lines
1.5 KiB
PHP
Raw Normal View History

2018-11-08 16:47:27 +00:00
@extends('settings.layouts.app')
2018-10-18 14:51:46 +00:00
@section('content')
<div class="header">
<h3 class="header-title">
<i class="fa fa-file"></i> Datasets to be processed
</h3>
2018-11-08 16:47:27 +00:00
</div>
2018-10-18 14:51:46 +00:00
<div class="pure-g box-content">
<div class="pure-u-1">
<table class="pure-table pure-table-horizontal">
2018-11-08 16:47:27 +00:00
<thead>
2018-10-18 14:51:46 +00:00
<th>Dataset Title</th>
<th>ID</th>
<th>Server State</th>
</thead>
<tbody>
2018-11-08 16:47:27 +00:00
@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>
2018-10-18 14:51:46 +00:00
2018-11-08 16:47:27 +00:00
<td>
@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
</td>
</tr>
@endforeach
2018-10-18 14:51:46 +00:00
</tbody>
2018-11-08 16:47:27 +00:00
</table>
</div>
2018-10-18 14:51:46 +00:00
</div>
2018-11-08 16:47:27 +00:00
2018-10-18 14:51:46 +00:00
@stop