{% extends "base.html" %} {% block title %}Debby Agents{% endblock %} {% block content %}
New Agent {% for agent in agents %} {% endfor %}
Agent ID Name Address Token Tags Jobs Action
{{ agent.id }} {{ agent.name }} {{ agent.address }} {{ agent.token[:5] ~ '**********' ~ agent.token[-5:] }} {{ agent.tags_ }} {{ agent.jobs ~ "/" ~ agent.max_jobs }}
New Tag {% for tag in tags %} {% endfor %}
Tag ID Value Action
{{ tag.id }} {{ tag.value }}
{% endblock %} {% block js %} {% endblock %}