{% extends "base.html" %} {% block title %}my bots - irc.bot{% endblock %} {% block content %}

my bots

{% if bots.is_empty() %}

no bots yet. create one.

{% else %} {% for bot in bots %} {% endfor %}
name nick network status created
{{ bot.name }} {{ bot.nick }} {{ bot.network_addr }} {{ bot.status }} {{ bot.created_at }}
{% endif %}
{% endblock %}