{% macro pagination(current_page, total_pages) %} {% if total_pages <= 1 %} {% else %} {% endif %} {% endmacro %} {% macro index_pagination(total_pages) %} {% if total_pages <= 0 %} {% else %} {% endif %} {% endmacro %} {% macro message(role_class, role_label, msg_id, timestamp, content_html) %}
{{ role_label }}
{{ content_html|safe }}
{% endmacro %} {% macro tool_use(tool_name, description, input_json, tool_id) %}
{{ tool_name }}
{% if description %}
{{ description }}
{% endif %}
{{ input_json }}
{% endmacro %} {% macro tool_result(content_html, is_error, has_images=False) %}
{{ content_html|safe }}
{% endmacro %} {% macro thinking(content_html) %}
{{ content_html|safe }}
{% endmacro %} {% macro user_content(content_html) %}
{{ content_html|safe }}
{% endmacro %} {% macro assistant_text(content_html) %}
{{ content_html|safe }}
{% endmacro %} {% macro meta_block(content_html) %}
{{ content_html|safe }}
{% endmacro %} {% macro turn_section(turn_num, title, status, messages_html) %}
Turn {{ turn_num }} ยท {{ title }}
{{ status }}
{{ messages_html|safe }}
{% endmacro %} {% macro index_item(prompt_num, link, timestamp, rendered_content, stats_html) %}
Turn {{ prompt_num }}
{{ rendered_content|safe }}
{{ stats_html|safe }}
{% endmacro %} {% macro index_commit(commit_hash, commit_msg, timestamp, link) %} {% if link %}
{{ commit_hash[:7] }}
{{ commit_msg }}
{% else %}
{{ commit_hash[:7] }}
{{ commit_msg }}
{% endif %} {% endmacro %} {% macro index_long_text(rendered_content) %}
{{ rendered_content|safe }}
{% endmacro %} {% macro index_stats(tool_stats_str, long_texts_html) %} {% if tool_stats_str or long_texts_html %} {% if tool_stats_str %}{{ tool_stats_str }}{% endif %}{{ long_texts_html|safe }} {% endif %} {% endmacro %}