{% from "components/big-number.html" import big_number %} {% macro mapping_table(caption='', field_headings=[], field_headings_visible=True, caption_visible=True, equal_length=False) -%} {% for field_heading in field_headings %} {% endfor %} {{ caller() }}
{{ caption }}
{% if field_headings_visible %} {{ field_heading }} {% else %} {{ field_heading }} {% endif %}
{%- endmacro %} {% macro list_table(items, caption='', empty_message='', field_headings=[], field_headings_visible=True, caption_visible=True, equal_length=False) -%} {% set parent_caller = caller %} {% call mapping_table(caption, field_headings, field_headings_visible, caption_visible, equal_length) %} {% for item in items %} {% call row(item.id) %} {{ parent_caller(item, loop.index + 1) }} {% endcall %} {% endfor %} {% if not items %} {% call row() %} {{ empty_message }} {% endcall %} {% endif %} {%- endcall %} {%- endmacro %} {% macro row(id=None) -%} {{ caller() }} {%- endmacro %} {% macro row_group(id=None) %} {{ caller() }} {%- endmacro %} {% macro settings_row(if_has_permission='') -%} {% set parent_caller = caller %} {% if if_has_permission in current_service.permissions %} {% call row() %} {{ parent_caller() }} {% endcall %} {% endif %} {%- endmacro %} {% macro field(align='left', status='', border=True) -%} {% set field_alignment = 'table-field-right-aligned' if align == 'right' else 'table-field-center-aligned' %} {% set border = '' if border else 'table-field-noborder' %}
{{ caller() }}
{%- endmacro %} {% macro row_heading() -%} {{ caller() }} {%- endmacro %} {% macro index_field(text=None) -%} {{ text if text != None else caller() }} {%- endmacro %} {% macro text_field(text, status='', truncate=false) -%} {% call field(status=status) %} {% if text is iterable and text is not string %} {% else %} {% if truncate %}
{{text}}
{% else %} {{ text }} {% endif %} {% endif %} {% endcall %} {%- endmacro %} {% macro optional_text_field(text, default='Not set', truncate=false) -%} {{ text_field( text or default, status='' if text else 'default', truncate=truncate ) }} {%- endmacro %} {% macro link_field(text, link) -%} {% call field() %} {{ text }} {% endcall %} {%- endmacro %} {% macro edit_field(text, link, permissions=[]) -%} {% call field(align='right') %} {% if not permissions or current_user.has_permissions(*permissions) %} {{ text }} {% endif %} {% endcall %} {%- endmacro %} {% macro boolean_field(value) -%} {{ text_field('On' if value else 'Off') }} {%- endmacro %} {% macro right_aligned_field_heading(text) %} {{ text }} {%- endmacro %} {% macro hidden_field_heading(text) %} {{ text }} {%- endmacro %} {% macro notification_status_field(notification) %} {% set displayed_on_single_line = notification.status in ['created', 'pending', 'pending-virus-check', 'sending', 'sent', 'delivered', 'returned-letter', 'accepted', 'received'] %} {% if not notification %} {% call field(align='right') %}{% endcall %} {% else %} {% call field( status=notification.status|format_notification_status_as_field_status(notification.notification_type), align='right' ) %} {% if displayed_on_single_line %}{% endif %} {% if notification.status|format_notification_status_as_url(notification.notification_type) %} {% endif %} {{ notification.status|format_notification_status(notification.template.template_type) }} {% if notification.status|format_notification_status_as_url(notification.notification_type) %} {% endif %} {% if notification['notification_type'] == "letter" %} {% if notification.status == 'permanent-failure' %} {{ (notification.updated_at)|format_datetime_short }} {% else %} {{ (notification.created_at)|format_datetime_short }} {% endif %} {% else %} {{ notification.status|format_notification_status_as_time( notification.created_at|format_datetime_short, (notification.updated_at or notification.created_at)|format_datetime_short ) }} {% endif %} {% if displayed_on_single_line %}{% endif %} {% endcall %} {% endif %} {% endmacro %} {% macro spark_bar_field( count, max_count, id=None ) %} {% call field(align='right') %} {{ big_number( count, smallest=True ) }} {% endcall %} {% endmacro %}