{% 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_history=True, edit_url=url_for('timer.edit', function_id=function_id), cancel_url=url_for('timer.overview'), logs_url=url_for('timer.logs', function_id=function_id), history_url=url_for('timer.history', function_id=function_id)) }}
{% 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 timer function invocations have been recorded yet.