mirror of https://github.com/Squidex/squidex.git
committed by
GitHub
21 changed files with 199 additions and 84 deletions
@ -1,25 +1,25 @@ |
|||||
<div [formGroup]="triggerForm.form" class="form-horizontal"> |
<div [formGroup]="triggerForm.form" class="form-horizontal"> |
||||
<div class="form-group"> |
<div class="form-group"> |
||||
<label for="limit">Limit</label> |
<label for="limit">{{ 'rules.conditions.usageLimit' | sqxTranslate }}</label> |
||||
|
|
||||
<sqx-control-errors for="limit"></sqx-control-errors> |
<sqx-control-errors for="limit"></sqx-control-errors> |
||||
|
|
||||
<input type="number" step="1" class="form-control" id="limit" formControlName="limit"> |
<input type="number" step="1" class="form-control" id="limit" formControlName="limit"> |
||||
|
|
||||
<sqx-form-hint> |
<sqx-form-hint> |
||||
The monthly api calls to trigger. |
{{ 'rules.conditions.usageLimitHint' | sqxTranslate }} |
||||
</sqx-form-hint> |
</sqx-form-hint> |
||||
</div> |
</div> |
||||
|
|
||||
<div class="form-group"> |
<div class="form-group"> |
||||
<label for="condition">Days</label> |
<label for="condition">{{ 'rules.conditions.usageDays' | sqxTranslate }}</label> |
||||
|
|
||||
<sqx-control-errors for="numDays" fieldName="Days"></sqx-control-errors> |
<sqx-control-errors for="numDays" fieldName="Days"></sqx-control-errors> |
||||
|
|
||||
<input type="number" step="1" class="form-control" id="condition" formControlName="numDays"> |
<input type="number" step="1" class="form-control" id="condition" formControlName="numDays"> |
||||
|
|
||||
<sqx-form-hint> |
<sqx-form-hint> |
||||
The number of days to check or empty to check the current month. |
{{ 'rules.conditions.usageDaysHint' | sqxTranslate }} |
||||
</sqx-form-hint> |
</sqx-form-hint> |
||||
</div> |
</div> |
||||
</div> |
</div> |
||||
Loading…
Reference in new issue