client/app/search/search.html
author cavaliet
Mon, 06 Oct 2014 12:59:13 +0200
changeset 6 4be9f21f2df1
parent 4 28208a0ad8b9
child 7 e70f1c4785f3
permissions -rw-r--r--
show/hide texts

<h1>Recherche <span ng-if="q !='' "> : {{ q }}</span></h1>
<h4 class="subtitle" ng-if="results.nhits>0">{{ results.nhits }} résultat(s)</h4>
<div ng-if="results.nhits>0">
  <div class="row search-item" ng-repeat="h in results.hits" ng-init="h.imgbig=false">
      <div ng-class="{'col-md-5': h.imgbig, 'col-md-3': !h.imgbig}">
        <img src="{{ h.url }}" ng-class="{'search-img-max': !h.imgbig}"/>
      </div>
      <div ng-class="{'col-md-5': h.imgbig, 'col-md-7': !h.imgbig}">
	      <p><strong>Nom&nbsp;:</strong> {{ h.metas|meta:"name" }}</p>
	      <p><strong>Description&nbsp;:</strong> {{ h.metas|meta:"description" }}</p>
	      <div ng-show="h.imgbig">
		      <p><small><strong>Classification&nbsp;:</strong> {{ h.metas|meta:"classification" }}</small></p>
		      <p><small><strong>Current Custody&nbsp;:</strong> {{ h.metas|meta:"currentcustody" }}</small></p>
		      <p><small><strong>Former Custody&nbsp;:</strong> {{ h.metas|meta:"formercustody" }}</small></p>
		      <p><small><strong>Mesures&nbsp;:</strong> {{ h.metas|meta:"measures" }}</small></p>
		      <p><small><strong>Acteurs&nbsp;:</strong> {{ h.metas|meta:"actors" }}</small></p>
		      <p><small><strong>Lieux&nbsp;:</strong> {{ h.metas|meta:"places" }}</small></p>
	      </div>
      </div>
      <div class="col-md-1">
          <a class="btn btn-default" href="#/slideshow/add/{{q}},{{$index}}"><span class="glyphicon glyphicon-plus"></span></a>
          <a class="btn btn-default" ng-click="h.imgbig=!h.imgbig"><span class="glyphicon glyphicon-eye-open"></span></a>
      </div>
  </div>
</div>