{% 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, {% 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)) }}
{{ 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 function invocations have been recorded yet.