Improved description list

This commit is contained in:
2016-02-15 18:55:22 +01:00
parent ba620bcf8d
commit 8e01f5f3a3

View File

@@ -8,13 +8,12 @@
<div class="search-score"> {{h.fields['ref']}} <span class="badge">Score: {{round4Dec(h.score)}} </span></div>
<h4> {{h.fields['série']}} - {{h.fields['titre']}} </h4>
<hr/>
<ul class="hidden-xs">
<li ng-repeat="(field,fragments) in h.fragments"><label>{{field}}</label>:
<ul>
<li ng-repeat="f in fragments" ng-bind-html="trustedFragment(f)"></li>
</ul>
</li>
</ul>
<dl class="hidden-xs dl-horizontal">
<div ng-repeat="(field,fragments) in h.fragments">
<dt>{{field}}</dt>
<dd ng-repeat="f in fragments" ng-bind-html="trustedFragment(f)"></dd>
</div>
</dl>
</div>
</div>