Github Issue #116
parent
97d7bc9c13
commit
a5a102bbe4
|
@ -1,46 +1,14 @@
|
||||||
<script type="text/html" id="tmpl-client">
|
<script type="text/html" id="tmpl-client">
|
||||||
<td>
|
<td>
|
||||||
<%=clientId%>
|
<%=clientId%>
|
||||||
|
<blockquote><small><%=clientDescription%></small></blockquote>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
<%=clientName%>
|
<%=clientName%>
|
||||||
</td>
|
<!--expandable future information-->
|
||||||
<td>
|
|
||||||
<ul>
|
|
||||||
<% for (var i in registeredRedirectUri) { %>
|
|
||||||
<li>
|
|
||||||
<%=registeredRedirectUri[i]%>
|
|
||||||
</li>
|
|
||||||
<% } %>
|
|
||||||
</ul>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<ul>
|
|
||||||
<% for (var i in authorizedGrantTypes) { %>
|
|
||||||
<li>
|
|
||||||
<%=authorizedGrantTypes[i]%>
|
|
||||||
</li>
|
|
||||||
<% } %>
|
|
||||||
</ul>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<ul>
|
|
||||||
<% for (var i in scope) { %>
|
|
||||||
<li>
|
|
||||||
<%=scope[i]%>
|
|
||||||
</li>
|
|
||||||
<% } %>
|
|
||||||
</ul>
|
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>
|
|
||||||
<%=clientDescription%>
|
|
||||||
</td>
|
|
||||||
<td><input type="checkbox"
|
|
||||||
<%=(allowRefresh == 1 ? 'checked' : '')%>
|
|
||||||
value="" id="" name="" disabled>
|
|
||||||
</td>
|
|
||||||
<td>
|
<td>
|
||||||
<button class="btn btn-edit">edit</button>
|
<button class="btn btn-edit">edit</button>
|
||||||
</td>
|
</td>
|
||||||
|
@ -58,13 +26,8 @@
|
||||||
<table id="client-table" class="table">
|
<table id="client-table" class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>ID</th>
|
<th>Client ID</th>
|
||||||
<th>Name</th>
|
<th>Client Name</th>
|
||||||
<th>Redirect URI(s)</th>
|
|
||||||
<th>Grant Types</th>
|
|
||||||
<th>Scope</th>
|
|
||||||
<th>Description</th>
|
|
||||||
<th>Refresh Tokens</th>
|
|
||||||
<th class="span1"></th>
|
<th class="span1"></th>
|
||||||
<th class="span1"></th>
|
<th class="span1"></th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in New Issue