{% extends "base.html" %} {% block title %}Apps - Admin Panel{% endblock %} {% block page_title %}Apps Management{% endblock %} {% block content %}

Deploy New App

{% for template in templates %}
{{ template.name }}

{{ template.folder_path }}

{{ template.deployed_count }} deployed
{% endfor %} {% if not templates %}
No apps available

App templates will be created automatically when you first visit this page.

{% endif %} {% for app in deployed_apps.items %} {% endfor %}

Deployed Apps

{% if deployed_apps.items %}
{% for app in deployed_apps.items %} {% endfor %}
App Name API Key Status CAPTCHA Max Attempts Created Actions
{{ app.app_template.name }} {{ app.api_key }} {% if app.enabled %} Enabled {% else %} Disabled {% endif %} {% if app.turnstile_enabled %} {% else %} {% endif %} {{ app.max_attempts }} {{ app.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if deployed_apps.pages > 1 %} {% endif %} {% else %}
No deployed apps yet

Deploy apps from the templates above to see them here.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}