{% extends 'base.html' %} {% load i18n %} {% block body %}

{% trans "Management for:" %} {{ key }}

{% blocktrans %} Here is where you can store your configuration so that it can be accessed by Apprise. You can always refer to the Apprise Wiki if you're having troubles assembling your URL(s). You have chosen to associate your configuration with the key {{key}}. If anything was previously associated with this key, it will be replaced if you continue. {% endblocktrans %}

{% blocktrans %} In the future you can return to this configuration screen at any time by placing the following into your browser:{% endblocktrans %}
{{request.scheme}}://{{request.META.HTTP_HOST}}{{request.path}}

{% blocktrans %}For example, the following command would cause apprise to retrieve the configuration loaded and send a test notification to all of your added services:{% endblocktrans %}
apprise --body="Test Message" --tag=all --config={{request.scheme}}://{{request.META.HTTP_HOST}}{% url "get" key %}
{% trans "Option 1: Add By URL" %}

{% blocktrans %} Use a comma and/or space to separate one Apprise URL from another. {% endblocktrans %}

{{ form_url }}

{% trans "Option 2: Add By Config" %}

{% blocktrans %} This option grants you a bit more flexability because you can additionally associate tags with your URLs. Those using YAML configuration can also alter the Apprise Asset object as well for a more customized look and feel. {% endblocktrans %}

{{ form_cfg }}

{% blocktrans %} You can send a notification using the loaded configuration: {% endblocktrans %}

{{ form_notify }}

{% endblock %}