mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-23 01:05:14 +02:00
* fix bug on email separator Signed-off-by: Denis barbaron <denis.barbaron@orange.com> * allow group name change Signed-off-by: Denis barbaron <denis.barbaron@orange.com> * add maintenance banner on UI Signed-off-by: Denis barbaron <denis.barbaron@orange.com> * removes unnecessary comments Signed-off-by: Denis barbaron <denis.barbaron@orange.com> --------- Signed-off-by: Denis barbaron <denis.barbaron@orange.com>
35 lines
1.4 KiB
Plaintext
35 lines
1.4 KiB
Plaintext
//
|
|
Copyright © 2024 code initially contributed by Orange SA, authors: Denis Barbaron - Licensed under the Apache license 2.0
|
|
//
|
|
|
|
.widget-container.fluid-height(ng-controller='AlertMessageCtrl')
|
|
.heading
|
|
i.fa.fa-exclamation-triangle
|
|
span(translate) Alert Message
|
|
.widget-content.padded
|
|
.form-horizontal
|
|
.form-group.general-item
|
|
.input-group
|
|
.input-group-addon.input-sm
|
|
i.fa.fa-exclamation-triangle(
|
|
uib-tooltip="{{'Define your own alert message' | translate}}" tooltip-placement='auto top-right' tooltip-popup-delay='500')
|
|
input.form-control.input-sm(size='20' type='text' placeholder='' ng-model='alertMessage.data')
|
|
.form-group.general-item
|
|
label.general-label(
|
|
translate
|
|
uib-tooltip="{{'Alert message activation' | translate}}"
|
|
tooltip-placement='auto top-right'
|
|
tooltip-popup-delay='500') Activation
|
|
select(
|
|
ng-model='alertMessage.activation'
|
|
ng-options='option for option in alertMessageActivationOptions')
|
|
.form-group.general-item
|
|
label.general-label(
|
|
translate
|
|
uib-tooltip="{{'Alert message level' | translate}}"
|
|
tooltip-placement='auto top-right'
|
|
tooltip-popup-delay='500') Level
|
|
select(
|
|
ng-model='alertMessage.level'
|
|
ng-options='option for option in alertMessageLevelOptions')
|