{% extends 'base.html' %} {% load static from staticfiles %} {% block title %} | Deployment Log{% endblock title %} {% block content %}

Deployment Log

{% for entry in object_list %} {% endfor %}
{{ entry.time|date:"D M j, H:i T"}} {{ entry.user.username }} {{ entry.message }}
{% if is_paginated %} {% endif %}

By type:

{% with 'swarm build release deploy destroy start stop restart' as types %} {% for value in types.split %} {% endfor %} {% endwith %}

By user:

By app:

Date range:

Clear all
{% endblock content %}