more approval page enhancements
parent
1615dd88cc
commit
bf6e6b64c3
|
@ -38,13 +38,13 @@
|
||||||
|
|
||||||
<%-- TODO: wire up to stats engine and customize display of this block --%>
|
<%-- TODO: wire up to stats engine and customize display of this block --%>
|
||||||
<c:if test="${ client.dynamicallyRegistered }">
|
<c:if test="${ client.dynamicallyRegistered }">
|
||||||
<div class="alert alert-block alert-info">
|
<div class="alert alert-block">
|
||||||
<h4>
|
<h4>
|
||||||
<i class="icon-globe"></i> Caution:
|
<i class="icon-globe"></i> Caution:
|
||||||
</h4>
|
</h4>
|
||||||
This software was dynamically registered and has been used by
|
This software was dynamically registered and has been used by
|
||||||
<span class="label"><c:out value="${ count }" /></span>
|
<span class="label"><c:out value="${ count }" /></span>
|
||||||
users.
|
user<c:out value="${ count == 1 ? '' : 's' }"/>.
|
||||||
</div>
|
</div>
|
||||||
</c:if>
|
</c:if>
|
||||||
|
|
||||||
|
@ -57,9 +57,8 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</c:if>
|
</c:if>
|
||||||
<div>
|
<div class="alert alert-info">
|
||||||
${client.clientDescription}
|
${client.clientDescription}
|
||||||
</div>
|
|
||||||
<c:if test="${ (not empty client.clientUri) || (not empty client.policyUri) || (not empty client.tosUri) }">
|
<c:if test="${ (not empty client.clientUri) || (not empty client.policyUri) || (not empty client.tosUri) }">
|
||||||
<div>
|
<div>
|
||||||
<a id="toggleMoreInformation" class="small" href="#"><i class="icon-chevron-right"></i> more information</a>
|
<a id="toggleMoreInformation" class="small" href="#"><i class="icon-chevron-right"></i> more information</a>
|
||||||
|
@ -69,9 +68,16 @@
|
||||||
<c:if test="${ not empty client.clientUri }">
|
<c:if test="${ not empty client.clientUri }">
|
||||||
<li>Home page: <a href="<c:out value="${ client.clientUri }" />"><c:out value="${ client.clientUri }" /></a>
|
<li>Home page: <a href="<c:out value="${ client.clientUri }" />"><c:out value="${ client.clientUri }" /></a>
|
||||||
</c:if>
|
</c:if>
|
||||||
|
<c:if test="${ not empty client.policyUri }">
|
||||||
|
<li>Policy: <a href="<c:out value="${ client.policyUri }" />"><c:out value="${ client.policyUri }" /></a>
|
||||||
|
</c:if>
|
||||||
|
<c:if test="${ not empty client.tosUri }">
|
||||||
|
<li>Terms of Service: <a href="<c:out value="${ client.tosUri }" />"><c:out value="${ client.tosUri }" /></a>
|
||||||
|
</c:if>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</c:if>
|
</c:if>
|
||||||
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<c:choose>
|
<c:choose>
|
||||||
<c:when test="${ empty client.redirectUris }">
|
<c:when test="${ empty client.redirectUris }">
|
||||||
|
|
Loading…
Reference in New Issue