You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
4.1 KiB
81 lines
4.1 KiB
{% extends 'base.html' %}
|
|
{% block content %}
|
|
{% from '_helpers.jinja' import render_field %}
|
|
<div class="edit-form monospaced-textarea">
|
|
<form class="pure-form pure-form-stacked" action="{{ url_for('edit_page', uuid=uuid, next = request.args.get('next') ) }}" method="POST">
|
|
<fieldset>
|
|
<div class="pure-control-group">
|
|
{{ render_field(form.url, placeholder="https://...", size=30, required=true) }}
|
|
</div>
|
|
<div class="pure-control-group">
|
|
{{ render_field(form.title, size=30) }}
|
|
</div>
|
|
<div class="pure-control-group">
|
|
{{ render_field(form.tag, size=10) }}
|
|
</div>
|
|
<div class="pure-control-group">
|
|
{{ render_field(form.minutes_between_check, size=5) }}
|
|
{% if using_default_minutes %}
|
|
<span class="pure-form-message-inline">Currently using the <a href="{{ url_for('settings_page', uuid=uuid) }}">default global settings</a>, change to another value if you want to be specific.</span>
|
|
{% else %}
|
|
<span class="pure-form-message-inline">Set to blank to use the <a href="{{ url_for('settings_page', uuid=uuid) }}">default global settings</a>.</span>
|
|
{% endif %}
|
|
</div>
|
|
<div class="pure-control-group">
|
|
{{ render_field(form.css_filter, size=25, placeholder=".class-name or #some-id, or other CSS selector rule.") }}
|
|
<span class="pure-form-message-inline">
|
|
<ul>
|
|
<li>CSS - Limit text to this CSS rule, only text matching this CSS rule is included.</li>
|
|
<li>JSON - Limit text to this JSON rule, using <a href="https://pypi.org/project/jsonpath-ng/">JSONPath</a>, prefix with <b>"json:"</b>, <a href="https://jsonpath.com/" target="new">test your JSONPath here</a></li>
|
|
</ul>
|
|
Please be sure that you thoroughly understand how to write CSS or JSONPath selector rules before filing an issue on GitHub! <a href="https://github.com/dgtlmoon/changedetection.io/wiki/CSS-Selector-help">here for more CSS selector help</a>.<br/>
|
|
</span>
|
|
</div>
|
|
<!-- @todo: move to tabs --->
|
|
<fieldset class="pure-group">
|
|
{{ render_field(form.ignore_text, rows=5, placeholder="Some text to ignore in a line
|
|
/some.regex\d{2}/ for case-INsensitive regex
|
|
") }}
|
|
<span class="pure-form-message-inline">
|
|
Each line processed separately, any line matching will be ignored.<br/>
|
|
Regular Expression support, wrap the line in forward slash <b>/regex/</b>.
|
|
</span>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset class="pure-group">
|
|
{{ render_field(form.headers, rows=5, placeholder="Example
|
|
Cookie: foobar
|
|
User-Agent: wonderbra 1.0") }}
|
|
</fieldset>
|
|
|
|
<div class="pure-control-group">
|
|
{{ render_field(form.notification_urls, rows=5, placeholder="Examples:
|
|
Gitter - gitter://token/room
|
|
Office365 - o365://TenantID:AccountEmail/ClientID/ClientSecret/TargetEmail
|
|
AWS SNS - sns://AccessKeyID/AccessSecretKey/RegionName/+PhoneNo
|
|
SMTPS - mailtos://user:pass@mail.domain.com?to=receivingAddress@example.com
|
|
") }}
|
|
<span class="pure-form-message-inline">Use <a target=_new href="https://github.com/caronc/apprise">AppRise URLs</a> for notification to just about any service!</span>
|
|
</div>
|
|
|
|
<div class="pure-controls">
|
|
{{ render_field(form.trigger_check, rows=5) }}
|
|
</div>
|
|
<div class="pure-control-group">
|
|
<button type="submit" class="pure-button pure-button-primary">Save</button>
|
|
</div>
|
|
<br/>
|
|
<div class="pure-control-group">
|
|
<a href="/" class="pure-button button-small button-cancel">Cancel</a>
|
|
<a href="/api/delete?uuid={{uuid}}"
|
|
class="pure-button button-small button-error ">Delete</a>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|