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

3bot

Configure, Build and Perform

{% if my_logs %}

My Log History

Latest Workflows perfomed by you
{% for log in my_logs %} {% endfor %}
{{ log.date_created|date:"d.m.y H:i" }} {{ log.workflow|truncatechars:50 }} {{ log.performed_by }}
{% endif %} {% if team_logs %}

Team Log History

Latest Workflows perfomed by your team members and you
{% for log in team_logs %} {% endfor %}
{{ log.date_created|date:"d.m.y H:i" }} {{ log.workflow|truncatechars:50 }} {{ log.performed_by }}
{% endif %}
{% if counts %}

Popular Workflows

Most performed Workflows
{% for wf in counts %} {% endfor %}
{{ wf.issue_count }}x {{ wf.title|truncatechars:50 }}
{% 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 %}