{% extends "base.html.j2" %} {% from "tables.html.j2" import alarms_table, automations_table, bridgeconfs_table, bridges_table, cloud_accounts_table, eotk_table, groups_table, instances_table, mirrorlists_table, origins_table, origin_onion_table, onions_table, pools_table, proxies_table, static_table, webhook_table %} {% block content %}

{{ title }}

{% if new_link %} Create new {{ item }} {% for extra_button in extra_buttons %} {{ extra_button.text }} {% endfor %} {% endif %} {% if section == "alarm" %} {{ alarms_table(items) }} {% elif item == "automation" %} {{ automations_table(items, states) }} {% elif item == "bridge configuration" %} {{ bridgeconfs_table(items) }} {% elif item == "bridge" %} {{ bridges_table(items) }} {% elif item == "cloud account" %} {{ cloud_accounts_table(items) }} {% elif item == "eotk" %} {{ eotk_table(items) }} {% elif item == "group" %} {{ groups_table(items) }} {% elif item == "distribution list" %} {{ mirrorlists_table(items) }} {% elif item == "onion service" %} {% if section == "onion" %} {{ onions_table(items) }} {% elif section == "origin" %} {{ origin_onion_table(items) }} {% endif %} {% elif item == "origin" %} {{ origins_table(items) }} {% elif item == "static" %} {{ static_table(items) }} {% elif item == "pool" %} {{ pools_table(items) }} {% elif item == "proxy" %} {{ proxies_table(items) }} {% elif item == "smart proxy" %} {{ instances_table("smart_proxy", items) }} {% elif item == "webhook" %} {{ webhook_table(items) }} {% endif %} {% endblock %}