{% extends 'base.html' %} {% load i18n %} {% block content %}
{% trans 'State' %} | {% trans 'User' %} | {% trans 'Date' %} |
---|---|---|
{{ device_states.0.state }} | {{ device_states.0.user.responsable_person|default:device_states.0.user.username }} | {{ device_states.0.date|date:"SHORT_DATETIME_FORMAT" }} |
{% trans 'No state recorded.' %} |
{% trans 'Date' %} | {% trans 'User' %} | {% trans 'State' %} |
---|---|---|
{{ state_change.state }} | {{ state_change.user.responsable_person|default:state_change.user.username }} | {{ state_change.date|date:"SHORT_DATETIME_FORMAT" }} |
{% trans 'No state changes recorded.' %} |
{% trans 'Key' %} | {% trans 'Value' %} | {% trans 'Created on' %} | |
---|---|---|---|
{{ a.key }} | {{ a.value }} | {{ a.created }} |
|
{% trans 'Key' %} | {% trans 'Value' %} | {% trans 'Created on' %} | ||
---|---|---|---|---|
{{ a.key }} | {{ a.value }} | {{ a.created }} |
{% for k, v in c.items %}
{% if k not in 'actions,type' %}
{{ k }}: {{ v }}
{% endif %}
{% endfor %}