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

Dashboard

{{ stats.total_submissions }}

Total Results

+{{ stats.week_submissions }} this week
{{ stats.iframe_views }}

Total Views

+{{ stats.week_iframe_views }} this week
{{ stats.bot_attempts }}

Bot Attempts

+{{ stats.week_bot_attempts }} this week
{{ stats.blocked_ips }}

Blocked IPs

Total blocked
Recent Submissions
{% if stats.recent_submissions %}
{% for submission in stats.recent_submissions %} {% endfor %}
Time App IP Username
{{ submission.created_at.strftime('%Y-%m-%d %H:%M') }} {{ submission.deployed_app.app_template.name }} {{ submission.ip_address }} {{ submission.username }}
{% else %}
No recent submissions

Recent form submissions will appear here.

{% endif %}
Statistics

View the statistics of the website.

System Tools
Reset Statistics

Clear all form submissions and analytics data while preserving API keys and settings.

Template Sync

Templates are automatically discovered from the webapps folder on app startup.

Auto-sync enabled
{% endblock %}