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

All Activity

List all activity

{% for logs in activity %} {% if "Delete" in logs.action and "User" in logs.action %} {% elif "Create" in logs.action and "User" in logs.action%} {% elif "Update" in logs.action and "User" in logs.action%} {% elif "Delete" in logs.action and "Stack" in logs.action%} {% elif "Create" in logs.action and "Stack" in logs.action%} {% elif "Delete" in logs.action and "account" in logs.action%} {% elif "Create" in logs.action and "account" in logs.action%} {% else %} {% endif %} {% endfor %}
Id Username Action squad Created_at
{{ logs.id }} {{ logs.username }} {{ logs.action }} {{ logs.squad}} {{ logs.created_at }}
{% include 'includes/footer.html' %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}