##// END OF EJS Templates
components: whole settings panel componentized
components: whole settings panel componentized

File last commit:

r83:437edeed
r83:437edeed
Show More
webhooks-integration-config-view.html
48 lines | 2.5 KiB | text/html | HtmlLexer
<ng-include src="'templates/loader.html'" ng-if="integrations.loading.application || $ctrl.loading.integration"></ng-include>
<div class="panel panel-default" ng-show="!integrations.loading.application && !$ctrl.loading.integration">
<div class="panel-heading" ng-include="'templates/settings_breadcrumbs.html'"></div>
<div class="panel-body">
<h1>Webhooks Integration</h1>
<form name="$ctrl.integrationForm" ng-submit="$ctrl.configureIntegration()" class="form-horizontal">
<div class="form-group" id="row-reports_webhook">
<label class="control-label col-sm-3 col-lg-2">
Reports webhook <span class="required">*</span>
</label>
<div class="col-sm-8 col-lg-9">
<data-form-errors errors="$ctrl.integrationForm.ae_validation.reports_webhook"></data-form-errors>
<input class="form-control" id="reports_webhook" name="reports_webhook" type="text" ng-model="$ctrl.config.reports_webhook">
</div>
</div>
<div class="form-group" id="row-alerts_webhook">
<label class="control-label col-sm-3 col-lg-2">
Alerts webhook <span class="required">*</span>
</label>
<div class="col-sm-8 col-lg-9">
<data-form-errors errors="$ctrl.integrationForm.ae_validation.alerts_webhook"></data-form-errors>
<input class="form-control StringField None" id="alerts_webhook" name="alerts_webhook" type="text" ng-model="$ctrl.config.alerts_webhook">
</div>
</div>
<div class="form-group" id="row-submit">
<label class="control-label col-sm-3 col-lg-2"></label>
<div class="col-sm-8 col-lg-9">
<input class="form-control btn btn-primary" id="submit" name="submit" type="submit" value="Setup webhooks">
<span class="dropdown" data-uib-dropdown on-toggle="toggled(open)">
<a class="btn btn-danger" data-uib-dropdown-toggle><span class="fa fa-trash-o"></span> Remove Integration</a>
<ul class="dropdown-menu">
<li><a>No</a></li>
<li><a ng-click="$ctrl.removeIntegration()">Yes</a></li>
</ul>
</span>
</div>
</div>
</form>
</div>
</div>