server/src/resources/views/sparql/sparqlClientResultBoolean.blade.php
author ymh <ymh.work@gmail.com>
Mon, 14 Nov 2016 16:27:55 +0100
changeset 419 a37e8629a95c
parent 386 c731ab9b934d
permissions -rw-r--r--
Added tag 0.0.11 for changeset 6eb84397be15
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
386
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
@extends('sparql/sparqlClientResultBase')
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
@section('result-content')
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
<div class="result-bindings-heading panel-heading h3">Résultat de la requête</div>
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
<div class="result-bindings-body panel-body">
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
    @if($results->isTrue())
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
    <span class="corpus-rdf-boolean corpus-rdf-boolean-true">VRAI</span>
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
    @else
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
    <span class="corpus-rdf-boolean corpus-rdf-boolean-false">FAUX</span>
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
    @endif
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
</div>
c731ab9b934d implement first version of sparql client interface
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
@endsection