{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% load static %} {% load tz %} {% block header %}
{% plugin_buttons object %} {% if perms.extras.add_webhook %} {% clone_button object %} {% endif %} {% if perms.extras.change_webhook %} {% edit_button object %} {% endif %} {% if perms.extras.delete_webhook %} {% delete_button object %} {% endif %}

{% block title %}{{ object }}{% endblock %}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Webhook
Object Type(s)
    {% for content_type in content_types %}
  • {{ content_type }}
  • {% endfor %}
Call On: {% if object.type_create %} {% else %} {% endif %} Create {% if object.type_update %} {% else %} {% endif %} Update {% if object.type_delete %} {% else %} {% endif %} Delete
Enabled {% if object.enabled %} {% else %} {% endif %}
HTTP
HTTP Method {{ object.http_method }}
HTTP Content Type {{ object.http_content_type }}
Payload URL {{ object.payload_url }}
Additional Headers {% if object.additional_headers %}
{{ object.additional_headers }}
{% else %} {{ None }} {% endif %}
Security
Secret {% if object.secret %} {{ object.secret }} {% else %} {{ None }} {% endif %}
SSL Verification {% if object.ssl_verification %} {% else %} {% endif %}
CA File Path {{ object.ca_file_path }}
Body Template
{% if object.body_template %}
{{ object.body_template }}
{% else %} {{ None }} {% endif %}
{% endblock %}