{% extends "views/platform-admin/_base_template.html" %} {% from "components/form.html" import form_wrapper %} {% from "components/table.html" import mapping_table, row, text_field %} {% block per_page_title %} Billing Report {% endblock %} {% block platform_admin_content %}

Users Report

{% call form_wrapper() %} {{ form.start_date(param_extensions={"hint": {"text": "Use the format YYYY-MM-DD"}}) }} {{ form.end_date(param_extensions={"hint": {"text": "Use the format YYYY-MM-DD"}}) }} {{ page_footer('Download report (CSV)') }} {% endcall %}

Data included in the report

{% call mapping_table( caption='Descriptions of billing report data', field_headings=['Name', 'Description'], field_headings_visible=True, caption_visible=False ) %} {% for column_heading, description in [ ('sms cost', 'The total cost of text messages sent after a service has used its free allowance.'), ('sms chargeable units', 'The number of fragments sent after a service has used its free allowance. This number takes into account the cost multiplier for sending international text messages.' | safe), ('purchase order number, contact names, contact email addresses and billing reference', 'We add this data manually based on the information we get from services. You can help by adding it to the service settings page.'), ] %} {% call row() %} {{ text_field(column_heading) }} {{ text_field(description) }} {% endcall %} {% endfor %} {% endcall %}
{% endblock %}