diff -r 01a844d292ac -r 00e2916104fe server/src/resources/views/bo/docEdit.blade.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/server/src/resources/views/bo/docEdit.blade.php Tue Jun 23 17:01:39 2015 +0200 @@ -0,0 +1,202 @@ +@extends('app') + +@section('content') +
+
+
+
+
@lang('bo.document_detail')
+ +
+
+
+
@lang('bo.document_audio')
+
+ +
+
+
+
@lang('bo.document_content')
+
@lang('bo.document_title')
+
{{$doc->getTitle()}} ({{$doc->getTitle()->getLang()}})
+
@lang('bo.document_editors')
+
@foreach ($doc->getPublishers() as $index => $publisher){{ $index>0?", ":"" }}{{$publisher}}@endforeach
+
@lang('bo.document_types')
+
@foreach ($doc->getOtherTypes() as $index => $type){{ $index>0?", ":"" }}{{$type}}@endforeach
+
@lang('bo.document_discourse_types')
+
+ @foreach ($doc->getDiscourseTypes() as $index => $type) + + @endforeach + +
+
+
+
+ {!! Form::open(['route'=>['bo.docs.update', $doc->getId()], 'id'=>'graph-form', 'class' => 'doc-form', 'method' => 'PUT']) !!} + {!! Form::submit('Ok') !!} + {!! Form::close() !!} +
+
{{ $doc->getGraph()->dump('text') }}
+
+
+
+
+
+@endsection + +