mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +00:00
46 lines
1.8 KiB
HTML
46 lines
1.8 KiB
HTML
<div class="view" ng-class="{loading: !isLoaded()}">
|
|
|
|
<!-- Main property editor -->
|
|
<div class="header">
|
|
<h2>{{'MANAGE_SHARING_PROFILE.SECTION_HEADER_EDIT_SHARING_PROFILE' | translate}}</h2>
|
|
<guac-user-menu></guac-user-menu>
|
|
</div>
|
|
<div class="section">
|
|
<table class="properties">
|
|
<tr>
|
|
<th>{{'MANAGE_SHARING_PROFILE.FIELD_HEADER_NAME' | translate}}</th>
|
|
<td><input type="text" ng-model="sharingProfile.name"
|
|
autocorrect="off" autocapitalize="off"/></td>
|
|
</tr>
|
|
<tr>
|
|
<th>{{'MANAGE_SHARING_PROFILE.FIELD_HEADER_PRIMARY_CONNECTION' | translate}}</th>
|
|
<td>{{primaryConnection.name}}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- Sharing profile attributes section -->
|
|
<div class="attributes">
|
|
<guac-form namespace="'SHARING_PROFILE_ATTRIBUTES'" content="attributes"
|
|
model="sharingProfile.attributes" model-only="!managementPermissions.canChangeAllAttributes"></guac-form>
|
|
</div>
|
|
|
|
<!-- Sharing profile parameters -->
|
|
<h2 class="header">{{'MANAGE_SHARING_PROFILE.SECTION_HEADER_PARAMETERS' | translate}}</h2>
|
|
<div class="section connection-parameters" ng-class="{loading: !parameters}">
|
|
<guac-form namespace="getNamespace(primaryConnection.protocol)"
|
|
content="protocols[primaryConnection.protocol].sharingProfileForms"
|
|
model="parameters"></guac-form>
|
|
</div>
|
|
|
|
<!-- Form action buttons -->
|
|
<management-buttons namespace="MANAGE_SHARING_PROFILE"
|
|
permissions="managementPermissions"
|
|
save="saveSharingProfile()"
|
|
delete="deleteSharingProfile()"
|
|
clone="cloneSharingProfile()"
|
|
return="returnToConnectionList()">
|
|
</management-buttons>
|
|
|
|
</div>
|