{% extends "base.html" %}
{% block header %}
{{ super() }}
{% endblock header %}
{% block content %}
{% include "partials/navbar.html" %}
{% if active_panel == 'campaigns' %}
{% include "partials/campaigns_panel.html" %}
{% elif active_panel == 'content' %}
{% include "partials/content_panel.html" %}
{% elif active_panel == 'users' %}
{% include "partials/users_panel.html" %}
{% elif active_panel == 'partners' %}
{% include "partials/partners_panel.html" %}
{% elif active_panel == 'programs' %}
{% include "partials/programs_panel.html" %}
{% elif active_panel == 'program_details' %}
{% include "partials/program_details.html" %}
{% elif active_panel == 'setup' %}
{% include "partials/setup_panel.html" %}
{% elif active_panel == 'calls' %}
{% include "partials/calls_panel.html" %}
{% elif active_panel == 'add_provider_number' %}
{% include "partials/providernumber_form.html" %}
{% elif active_panel == 'channels' %}
{% include "partials/channels_panel.html" %}
{% elif active_panel == 'schedule_program' %}
{% include "partials/experiencepauselog_form.html" %}
{% elif active_panel == 'nudge' %}
{% include "partials/nudge_panel.html" %}
{% elif active_panel == 'ivrprompt' %}
{% include "partials/ivr_prompts_panel.html" %}
{% elif active_panel == 'ivrpromptmapping' %}
{% include "partials/ivr_prompt_mapping.html" %}
{% endif %}
{% endblock content %}