remove base url

This commit is contained in:
Bill Burke 2013-11-26 15:47:05 -05:00
parent 3a9f9d73c2
commit cac394627e

View file

@ -36,12 +36,11 @@
<tr data-ng-show="applications.length > 0"> <tr data-ng-show="applications.length > 0">
<th>Application Name</th> <th>Application Name</th>
<th>Enabled</th> <th>Enabled</th>
<th>Base URL</th>
</tr> </tr>
</thead> </thead>
<tfoot data-ng-show="applications && applications.length > 5"> <!-- todo --> <tfoot data-ng-show="applications && applications.length > 5"> <!-- todo -->
<tr> <tr>
<td colspan="3"> <td colspan="2">
<div class="table-nav"> <div class="table-nav">
<a href="#" class="first disabled">First page</a><a href="#" class="prev disabled">Previous <a href="#" class="first disabled">First page</a><a href="#" class="prev disabled">Previous
page</a><span><strong>1-8</strong> of <strong>10</strong></span><a href="#" page</a><span><strong>1-8</strong> of <strong>10</strong></span><a href="#"
@ -55,7 +54,6 @@
<tr ng-repeat="app in applications"> <tr ng-repeat="app in applications">
<td><a href="#/realms/{{realm.id}}/applications/{{app.id}}">{{app.name}}</a></td> <td><a href="#/realms/{{realm.id}}/applications/{{app.id}}">{{app.name}}</a></td>
<td>{{app.enabled}}</td> <td>{{app.enabled}}</td>
<td ng-class="{'text-muted': !app.baseUrl}">{{app.baseUrl || "Not defined"}}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>