{% extends "portal_base.html" %} {% block title %}Services - OutsideTheBox{% endblock %} {% block portal_content %}

Services

{{ client.contact_name or client.company_name or client.email }}

Launch available OTB services from one place.

Back to Dashboard Logout
Logged in as: {{ client.contact_name or client.company_name or client.email }}
{% for service in services %}

{{ service.name }}

{{ service.summary }}

{% if service.status == 'beta' %} Beta {% elif service.status == 'coming_soon' %} Coming Soon {% else %} Available {% endif %}
{% if service.enabled %} {{ service.button_text }} {% else %} {% endif %}
{% endfor %}
{% endblock %}