diff --git a/logs/templates/logs/machine_history.html b/logs/templates/logs/machine_history.html
index c2ad7368..e1c510ed 100644
--- a/logs/templates/logs/machine_history.html
+++ b/logs/templates/logs/machine_history.html
@@ -48,8 +48,20 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{{ event.ipv4 }} |
{{ event.mac }} |
- {{ event.start_date }} |
- {{ event.end_date }} |
+
+ {% if event.start_date %}
+ {{ event.start_date }}
+ {% else %}
+ {% trans "Unknown" %}
+ {% endif %}
+ |
+
+ {% if event.start_date %}
+ {{ event.end_date }}
+ {% else %}
+ {% trans "Now" %}
+ {% endif %}
+ |
{{ event.comment }} |
{% endfor %}