{% extends "base.html" %} {% block doctitle %} Configure, Build and Perform {% endblock %} {% block content %}

3bot

Configure, Build and Perform

{% if team_logs %}

Team Log History

{% for log in team_logs %}

{% if log.exit_code == log.ERROR %} {% else %} {% endif %} {{ log }}

{% endfor %}
{% endif %} {% if counts %}

Most performed Workflows

{% for wf in counts %}

{{ wf.issue_count }}x {{ wf.title }}

{% endfor %}
{% endif %}
{% if my_logs %}

My Log History

{% for log in my_logs %}

{% if log.exit_code == log.ERROR %} {% else %} {% endif %} {{ log }}

{% endfor %}
{% endif %}
{% if not my_log and not team_logs and not counts %}

Look like you just installed 3bot. Here is a small Todo list to get started

  1. Configure a Worker.
  2. Create some Tasks. You can find some Useful Tasks on TODO: add url to gist.github.com
  3. Create a Workflow.
  4. Perform/Log a Workflow.
{% endif %} {% endblock %}