{% extends "base.html" %} {% block heading %} Recent Invocations {% endblock %} {% block content %} {% if filter_info %}

Invocations filtered by {{ filter_info | e }}

(all invocations) {% else %}

Recent Invocations

Filter by: only not fully cached {% if context_filters %}
Context {% for entry in context_filters %} {{ entry.key | e }}: {% for value in entry["values"] %} {% if loop.index > 1 %} , {% endif %} {{ value["value"] | e }} {% endfor %}
{% endfor %}
{% endif %} {% if remote_props_filters %}
Remote properties {% for entry in remote_props_filters %} {{ entry.key | e }}: {% for value in entry["values"] %} {% if loop.index > 1 %} , {% endif %} {{ value["value"] | e }} {% endfor %}
{% endfor %}
{% endif %} {% if remote_address_filters %}
Remote address {% for entry in remote_address_filters %} {% if loop.index > 1 %} , {% endif %} {{ entry["value"] | e }} {% endfor %}
{% endif %} {% if target_filters %}
Target {% for entry in target_filters %} {% if loop.index > 1 %} , {% endif %} {{ entry["value"] | e }} {% endfor %}
{% endif %} {% endif %} {% if full_invocations %}
{% else %} (none) {% endif %} {% endblock %}