{% extends "withnav_template.html" %} {% from "components/table.html" import list_table, row, field, hidden_field_heading %} {% from "components/page-footer.html" import page_footer %} {% block service_page_title %} Inbound Numbers {% endblock %} {% set table_headings = { 'field_headings': [ '', 'Number', 'Status', 'Service', 'Created on' ], 'field_headings_visible': True, 'caption_visible': True } %} {% set phone_number = { 'num':['012345560', '012345561', '012345562', '012345563', '012345564', '012345564', '012345564', '012345564', '012345564' , '012345564', '012345564'], 'field_headings_visible': True, 'caption_visible': True } %} {% set service = { 'name':['GOV.UK', 'DVLA', 'Passport office', 'Fishing Dept', 'Gov Wifi', 'Test', '', '', '' , '', ''], 'field_headings_visible': True, 'caption_visible': True } %} {% set active = { 'state':['active', 'active', 'active', 'active', 'active', 'active', '', '', '' , '', ''], 'field_headings_visible': True, 'caption_visible': True } %} .inbound { font-style:normal; font-weight:normal; } {% block maincolumn_content %}
| {{table_headings.field_headings[0]}} | {{table_headings.field_headings[1]}} | {{table_headings.field_headings[2]}} | {{table_headings.field_headings[3]}} |
|---|---|---|---|
| {{loop.index}} | {{value.number}} | {% if value.active %} Active {% else %}Inactive {% endif %} | {{value.service.name}} |