mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-23 20:35:24 +00:00
2d33b01f31
Conflicts: UI/Templates/ContactsUI/UIxContactEditorTemplate.wox UI/Templates/ContactsUI/UIxContactFolderLinksTemplate.wox UI/Templates/MailerUI/UIxMailMainFrame.wox UI/Templates/MainUI/SOGoRootPage.wox UI/Templates/PreferencesUI/UIxAccountEditor.wox UI/Templates/PreferencesUI/UIxPreferences.wox UI/Templates/SchedulerUI/UIxAppointmentEditorTemplate.wox UI/Templates/SchedulerUI/UIxAppointmentViewTemplate.wox UI/Templates/SchedulerUI/UIxCalMainView.wox UI/Templates/SchedulerUI/UIxCalendarFolderLinksTemplate.wox UI/Templates/SchedulerUI/UIxTaskEditorTemplate.wox UI/Templates/SchedulerUI/UIxTaskViewTemplate.wox UI/WebServerResources/angular-material
43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
<?xml version="1.0" standalone="yes"?>
|
|
<!DOCTYPE container>
|
|
<container
|
|
xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:var="http://www.skyrix.com/od/binding"
|
|
xmlns:const="http://www.skyrix.com/od/constant"
|
|
xmlns:label="OGo:label"
|
|
>
|
|
<md-dialog flex="40">
|
|
<md-toolbar class="sg-padded">
|
|
<div class="md-toolbar-tools">
|
|
<div class="pseudo-input-container md-flex">
|
|
<label class="pseudo-input-label"><var:string label:value="Links to this Address Book"/></label>
|
|
<div class="pseudo-input-field sg-md-title"><var:string value="addressBook.displayName"/></div>
|
|
</div>
|
|
<md-button class="md-icon-button" ng-click="close()">
|
|
<md-icon aria-label="Close dialog">close</md-icon>
|
|
</md-button>
|
|
</div>
|
|
</md-toolbar>
|
|
|
|
<md-dialog-content>
|
|
<div layout="column" layout-padding="layout-padding">
|
|
<div class="sg-md-title"><var:string label:value="Authenticated User Access"/></div>
|
|
<md-input-container>
|
|
<label><var:string label:value="CardDAV URL "/></label>
|
|
<input var:value="cardDavURL" ng-readonly="true"/>
|
|
</md-input-container>
|
|
</div>
|
|
<var:if condition="isPublicAccessEnabled">
|
|
<div layout="column" layout-padding="layout-padding">
|
|
<div class="sg-md-title"><var:string label:value="Public Access"/></div>
|
|
<md-input-container>
|
|
<label><var:string label:value="CardDAV URL "/></label>
|
|
<input var:value="publicCardDavURL" ng-readonly="true"/>
|
|
</md-input-container>
|
|
</div>
|
|
</var:if>
|
|
</md-dialog-content>
|
|
</md-dialog>
|
|
|
|
</container>
|