{% extends "layouts/base.html" %} {% block title %} Tasks {% endblock %} {% block stylesheets %} {% endblock stylesheets %} {% block content %}
{% include 'includes/navigation.html' %}
SLD logo

All Tasks

List all tasks

{% for task in tasks%} {% if "Apply" in task.action %} {% elif "Destroy" in task.action %} {% elif "Update" in task.action %} {% else %} {% endif %} {% endfor %}
Task Id Deploy Id Action Username Task Name squad Created_at
{{ task.task_id }}
{{ task.deploy_id }} {{ task.action }} {{ task.username }} {{ task.task_name }} {{ task.squad}} {{ task.created_at }}
{% include 'includes/footer.html' %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}