{% extends "base.html" %} {% block title %}All Bots - Bot Master{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if bots %} {% for bot in bots %} {% endfor %}
Bot Status Servers Commands Last Checked Actions
{{ bot.name[0].upper() }}
{{ bot.name }}
{{ bot.bot_type|capitalize }}
{{ bot.status|capitalize }} {{ bot.guild_count or 0 }} {{ bot.command_count or 0 }} {% if bot.last_checked %} {{ bot.last_checked.strftime('%b %d, %H:%M') }} {% else %} Never {% endif %} View
{% else %}

No bots added yet.

{% endif %}
{% endblock %}