{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% block extrahead %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% translate "Confirm Webhook Reprocessing" %}

{% blocktrans count count=webhooks|length %}Are you sure you want to reprocess the following webhook event?{% plural %}Are you sure you want to reprocess the following {{ count }} webhook events?{% endblocktrans %}

{% for webhook in webhooks %} {% endfor %}
{% translate "ID" %} {% translate "Event Type" %} {% translate "Created" %}
{{ webhook.id|slice:":8" }} {{ webhook.get_event_type_display }} {{ webhook.created_at|date:"Y-m-d H:i" }}
{% csrf_token %} {% for obj in queryset %} {% endfor %}
{% endblock %}