implemented table metadata editing page

This commit is contained in:
2018-07-29 18:27:04 +02:00
parent c1bc5a6677
commit 8ff10904ce
3 changed files with 66 additions and 5 deletions
+38 -3
View File
@@ -24,8 +24,43 @@
</div>
</div>
<div class="row mx-auto col-md-12 justify-content-center mb-1 border rounded px-0 py-2 box-shadow mb-3">
lalala
</div>{{-- End of row --}}
<form method="POST" action="{{$table->settingsRoute}}" class="row justify-content-center"
aria-label="New Table">
@csrf
<div class="col-md-10">
@php(Widget::setLayout(3, 7))
{!! Widget::header(2, 'Table Metadata') !!}
{!! Widget::text('title', 'Title')->value($table->title)
->help('Unique among your tables') !!}
{!! Widget::par('Changing table name will change its URL, possibly breaking external links or bookmarks!') !!}
{!! Widget::text('name', 'Name')->value($table->name)->prepend(user()->handle.' /')
->help('Unique among your tables, and part of the URL; only letters, digits and
some symbols are allowed.') !!}
{!! Widget::textarea('description', 'Description')->value($table->description)
->height('8em')
->help('Description of the table. URLs in a full format will be clickable.') !!}
{!! Widget::text('license', 'License')->value($table->license)
->help('License applicable to the table\'s data, if any. By default, all
tables are CC0 or Public Domain.') !!}
{!! Widget::text('origin', 'Adapted from')->value($table->origin)
->help('If you took the data from some external site, a book, etc., write it here.
URLs in a full format will be clickable.') !!}
<div class="row form-group">
<div class="col-md-7 offset-md-3">
<button type="submit" class="btn btn-primary">
@icon(fa-save fa-pr)Save Changes
</button>
</div>
</div>
</div>
</form>
@endsection