{% extends 'dashboard.html' %} {% block page %} {{ render_partial('dashboard/http_functions/header.html', user_id=user_id, function_id=function_id, active_tab='logs', show_edit_form=True, show_logs=True, show_client=True, show_history=True, edit_url=url_for('http.editor', function_id=function_id), cancel_url=url_for('http.overview'), logs_url=url_for('http.logs', function_id=function_id), history_url=url_for('http.history', function_id=function_id)) }}
{{ render_partial('dashboard/analytics.html', invocations=http_function_invocations) }}
{% for invocation in http_function_invocations %}
{{ invocation.invocation_time.strftime('%Y-%m-%d %H:%M:%S') }} v{{ invocation.version_number }}
{{ invocation.request_data }}
{{ invocation.response_data }}
{% if invocation.logs and invocation.logs[0] is iterable and invocation.logs[0] is not string -%}
                        {{- invocation.logs | map('join', ' ') | join('\n') -}}
                    {%- elif invocation.logs is iterable and invocation.logs is not string -%}
                        {{- invocation.logs | join('\n') -}}
                    {%- else -%}
                        {{- invocation.logs | string -}}
                    {%- endif -%}
{% if not invocation.logs %}
No logs available
{% endif %}
{% endfor %} {% if not http_function_invocations %}

No logs found

No function invocations have been recorded yet.

{% endif %}
{% endblock %}