{% extends "base.html" %} {% block title %}{{ bot.name }} - Bot Master{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ bot.name[0].upper() }}

{{ bot.name }}

{{ bot.bot_type|capitalize }} Bot
{{ bot.status|capitalize }}
Edit
{% if bot.description %}

{{ bot.description }}

{% endif %}

Statistics

{{ bot.guild_count or 0 }}
Servers
{{ bot.command_count or 0 }}
Commands
{{ (bot.uptime_seconds // 3600) if bot.uptime_seconds else 0 }}h
Uptime

Configuration

Health Endpoint
{% if bot.health_endpoint %}
{{ bot.health_endpoint }}
{% else %}
Not configured
{% endif %}
Admin Token {{ "Configured" if bot.admin_token else "Not set" }}

Details

Created {{ bot.created_at.strftime('%b %d, %Y %H:%M') if bot.created_at else 'Unknown' }}
Last Checked {{ bot.last_checked.strftime('%b %d, %Y %H:%M') if bot.last_checked else 'Never' }}
Last Updated {{ bot.updated_at.strftime('%b %d, %Y %H:%M') if bot.updated_at else 'Unknown' }}

Danger Zone

Once you delete a bot, there is no going back. Please be certain.

{% endblock %} {% block extra_js %} {% endblock %}