{% extends 'generic/object.html' %}
{% load render_table from django_tables2 %}
{% block content %}
| Name |
{{ object.name }} |
| Description |
{{ object.description }} |
| Receiver group |
{{ object.receiver_group }}
|
| UUID |
{{ object.uuid }} |
| Auth method |
{{ object.auth_method }} |
| Auth header |
{{ object.auth_header }} |
| Token |
{{ object.token|placeholder }} |
| Hash algotithm |
{{ object.hash_algorithm|placeholder }} |
| Secret Key |
{{ object.secret_key|placeholder }} |
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
| {{request.headers.referer | split:"/" | slice:"5" | join:"/" }}/webhooks/{{ object.uuid}}/ |
{% copy_content "webhook_endpoint" %}
|
{% endblock content %}