{% load i18n %} {% with prefix=viewer_prefix|default:'log-viewer' %} {% with wrapper_class=viewer_wrapper_class|default:'log-viewer-module' %} {% translate "Copy to clipboard" as default_copy_label %} {% translate "Log copied to your clipboard." as default_copy_success %} {% translate "Copy failed. Use your browser copy command instead." as default_copy_error %} {% translate "Lines to display" as default_limit_label %} {% translate "Download log" as default_download_label %} {% translate "No log entries recorded yet." as default_empty_message %}
{{ provided_content }}
{% else %}
{% with log_lines=log|default:log_lines %}
{% if log_lines %}
{{ log_lines|join:'\n' }}
{% else %}
{{ default_empty_message }}
{% endif %}
{% endwith %}
{% endif %}
{% endwith %}