slightly better displays for claim information
parent
19dbe92d4e
commit
8518c6f907
|
@ -101,13 +101,22 @@
|
||||||
</c:choose>
|
</c:choose>
|
||||||
|
|
||||||
<c:if test="${ not empty claims[scope.value] }">
|
<c:if test="${ not empty claims[scope.value] }">
|
||||||
|
<span class="claim-tooltip" data-toggle="tooltip"
|
||||||
|
data-html="true"
|
||||||
|
data-placement="right"
|
||||||
|
data-title="<ul>
|
||||||
<c:forEach var="claim" items="${ claims[scope.value] }">
|
<c:forEach var="claim" items="${ claims[scope.value] }">
|
||||||
[
|
<li>
|
||||||
<c:out value="${ claim.key } " />
|
<c:out value="${ claim.key } " />
|
||||||
:
|
:
|
||||||
<c:out value="${ claim.value }" />
|
<c:out value="${ claim.value }" />
|
||||||
]
|
</li>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
</ul>
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<i class="icon-question-sign"></i>
|
||||||
|
</span>
|
||||||
</c:if>
|
</c:if>
|
||||||
|
|
||||||
<c:if test="${ scope.structured }">
|
<c:if test="${ scope.structured }">
|
||||||
|
|
Loading…
Reference in New Issue