{% extends 'administrator/_layout.auth.html' %} {% set title="Infrastructure" %} {% set subtitle="Tasks" %} {% block content %}

Total: {{total}}

{% if tasks|length == 0 %} {% else %} {% for task in tasks %} {% endfor %} {% endif %}
Info Task
No tasks.
  • ID: {{ task.id }}
  • DC: {{ task.datacenter.name }}
  • Server: {{ task.server.hostname }}
  • User: {{ task.user.email }}
  • Created: {{ task.created }}
  • Status: {{ task.status }} {% if task.status == 0 %} New {% elif task.status == 1 %} Proccess {% elif task.status == 2 %} Complete {% else %} Unknown {% endif %}
  • Edit
  • Delete
  • {{ task.task }}
  • {{ task.plain }}
{% endblock %}