{% extends 'base.html' %} {% load i18n %} {% block content %}
{% trans "Latest Notes" %}
{% for note in device_notes|slice:":4" %}
{{ note.date|timesince }} {% trans "ago" %}
{% if user == note.user or user.is_admin %}
{% else %}
{% endif %}

{{ note.description }}

{{ note.user.get_full_name|default:note.user.username }}
{% if user == note.user or user.is_admin %}
{% csrf_token %}
{% csrf_token %}
{% endif %}
{% empty %}

{% trans "No notes available." %}

{% endfor %}

{{ object.shortid }}

{% if state_definitions %} {% else %} {% endif %}
{% include 'tabs/general_details.html' %} {% include 'tabs/log.html' %} {% include 'tabs/user_properties.html' %} {% include 'tabs/documents.html' %} {% include 'tabs/lots.html' %} {% include 'tabs/evidences.html' %} {% endblock %} {% block extrascript %} {% endblock %}