mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-05 20:57:40 +00:00
23 lines
840 B
HTML
23 lines
840 B
HTML
<div class="hostField">
|
|
<table class="restrictionList" ng-show="restrictions !== null && restrictions.length > 0">
|
|
<tr>
|
|
<th>{{ 'RESTRICT.TABLE_HEADER_HOST' | translate }}</th>
|
|
<th> </th>
|
|
</tr>
|
|
<tr class="restrictionListItem" ng-repeat="entry in restrictions">
|
|
<td>
|
|
<input type="text" ng-model="entry.host" ng-model-options="modelOptions">
|
|
</td>
|
|
<td>
|
|
<img class="restrictionListItem"
|
|
src="images/x-red.svg"
|
|
alt="Remove entry"
|
|
ng-click="removeEntry(entry)">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<button ng-click="addEntry()"
|
|
class="restrictionListButton">
|
|
{{ 'RESTRICT.ACTION_ADD_ENTRY' | translate }}
|
|
</button>
|
|
</div> |