{% 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)) }}
{% for invocation in timer_function_invocations %}
{{ invocation.invocation_time.strftime('%Y-%m-%d %H:%M:%S') }} v{{ invocation.version_number }}
{{ invocation.status }}
{{ invocation.logs }}
{% if not invocation.logs %}
No logs available
{% endif %}
{% endfor %} {% if not timer_function_invocations %}

No logs found

No timer function invocations have been recorded yet.

{% endif %}
{% endblock %}