@@ -13,7 +13,8 @@ class processor_settings_form(processor_text_json_diff_form):
render_kw={"placeholder":"No limit","size":"10"})
render_kw={"placeholder":"No limit","size":"10"})
price_change_max=FloatField('Maximum amount to trigger notification',[validators.Optional()],
price_change_max=FloatField('Maximum amount to trigger notification',[validators.Optional()],
render_kw={"placeholder":"No limit","size":"10"})
render_kw={"placeholder":"No limit","size":"10"})
price_change_threshold_percent=FloatField('Threshold in % for price changes',validators=[
price_change_threshold_percent=FloatField('Threshold in % for price changes since the original price',validators=[
validators.Optional(),
validators.Optional(),
validators.NumberRange(min=0,max=100,message="Should be between 0 and 100"),
validators.NumberRange(min=0,max=100,message="Should be between 0 and 100"),
],render_kw={"placeholder":"0%","size":"5"})
],render_kw={"placeholder":"0%","size":"5"})
@@ -37,12 +38,13 @@ class processor_settings_form(processor_text_json_diff_form):
<div class="pure-control-group">
<div class="pure-control-group">
<fieldset class="pure-group">
<fieldset class="pure-group">
{{ render_checkbox_field(form.in_stock_only) }}
{{ render_checkbox_field(form.in_stock_only) }}
<span class="pure-form-message-inline">Only trigger notifications when page changes from <strong>out of stock</strong> to <strong>back in stock</strong></span>
<span class="pure-form-message-inline">Only trigger re-stock notification when page changes from <strong>out of stock</strong> to <strong>back in stock</strong></span>
<span class="pure-form-message-inline">Price must change more than this % to trigger a change.</span><br>
<span class="pure-form-message-inline">Price must change more than this % to trigger a change.</span><br>
<span class="pure-form-message-inline">For example, If the product is $1,000 USD, <strong>2%</strong> would mean it has to change more than $20 since the first check.</span><br>
<span class="pure-form-message-inline">For example, If the product is $1,000 USD originally, <strong>2%</strong> would mean it has to change more than $20 since the first check.</span><br>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.