Current File : //usr/local/jetapps/var/www/jetbackup5/docroot/app/views/disasterRecovery/destination.htm
<div ng-controller="destinationManage" class="controller-box">
    <div ng-controller="disasterRecoveryDestination" >

        <div class="form-group" ng-show="!saveData._id">
            <label class="control-label col-md-3 col-sm-3 col-xs-12" for="type">{{ lang.t("Destination Type") }} <span class="required">*</span></label>
            <div class="col-md-6 col-sm-6 col-xs-12">
                <select id="type" class="form-control" ng-change="loadDestinationType()" data-ng-options="type.value as type.label group by type.group for type in types[const.DESTINATION_JOB_TYPE_BACKUP]" data-ng-model="saveData.type"></select>
            </div>
        </div>

        <div ng-include="destinationType"></div>

    </div>
</div>