mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
22 lines
No EOL
1.2 KiB
Text
22 lines
No EOL
1.2 KiB
Text
<div class="mb-3 row">
|
|
<label class="col-form-label col-sm-3">
|
|
<b>{{ i18n("notification_endpoint.shell.shell_options") }}</b>
|
|
<a title="{{ i18n('help') }}" target="blank" href="https://www.ntop.org/guides/ntopng/user_interface/shared/alerts/available_endpoints.html#shell"><i class="fa-regular fa-circle-question"></i></a>
|
|
</label>
|
|
<div class="col-sm-7">
|
|
<input data-pattern="^[0-9 a-fA-Z-]{32}" name="shell_script_options" type="text" class="form-control"/>
|
|
</div>
|
|
</div>
|
|
<div class="mb-3 row">
|
|
<label class="col-form-label col-sm-3">
|
|
<b>{{ i18n("notification_endpoint.shell.shell_script_execution") }}</b>
|
|
<a title="{{ i18n('help') }}" target="blank" href="https://www.ntop.org/guides/ntopng/user_interface/shared/alerts/available_endpoints.html#shell"><i class="fa-regular fa-circle-question"></i></a>
|
|
</label>
|
|
<div class="col-sm-7">
|
|
<select name="shell_script_execution" class="form-select" required>
|
|
<option value='always'>{{ i18n('always') }}</option>
|
|
<option value='engage'>{{ i18n('on_trigger') }}</option>
|
|
<option value='release'>{{ i18n('on_release') }}</option>
|
|
</select>
|
|
</div>
|
|
</div> |