{% extends "base.html" %} {% block content %}

My Company

{{ company.name }}
Back

Company stats

Users
{{ stats['users'] }}
Displays
{{ stats['displays'] }}
Playlists
{{ stats['playlists'] }}
Playlist items
{{ stats['items'] }}
Active display sessions
{{ stats['active_sessions'] }}
(last ~90 seconds)
Storage used
{{ stats['storage_human'] }}
({{ stats['storage_bytes'] }} bytes)
{% if stats.get('storage_max_human') %}
Limit: {{ stats['storage_max_human'] }} {% if stats.get('storage_used_percent') is not none %} — Used: {{ stats['storage_used_percent'] }}% {% endif %}
{% if stats.get('storage_used_percent') is not none %}
{% endif %} {% else %}
Limit: Unlimited
{% endif %}

Invite user

The user will receive an email with a password set link (valid for 30 minutes).

Overlay

Upload a 16:9 PNG overlay. It will be rendered on top of the display content. Transparent areas will show the content underneath.
{% if overlay_url %}
Current overlay:
Company overlay
{% else %}
No overlay uploaded.
{% endif %}
Tip: export at 1920×1080 (or any 16:9 size).
{% if overlay_url %}
{% endif %}

Users

{% for u in users %} {% else %} {% endfor %}
Email Created Actions
{{ u.email or "(no email)" }} {% if u.id == current_user.id %} you {% endif %} {{ u.created_at.strftime('%Y-%m-%d %H:%M') if u.created_at else "—" }} {% if u.id != current_user.id %}
{% else %} {% endif %}
No users.
{% endblock %}