{% extends "base.html" %} {% block title %}{{ note.title }} - Notes{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

{{ note.title }}

{% for tag in tags %} {{ tag }} {% endfor %}
Edit
{{ note.note_type|title }}
Created: {{ note.created_at[:19] }}
Updated: {{ note.updated_at[:19] }}
{% if note.created_by %}
{{ note.created_by }}
{% endif %}
{{ note.content|safe }}
{% if attachments %}

Attachments

{% for attachment in attachments %}
{% if attachment.content_type.startswith('image/') %} {{ attachment.filename }} {% else %}
{% endif %}
{{ attachment.filename }}
{{ (attachment.file_size / 1024)|round(1) }} KB
Download
{% endfor %}
{% endif %} {% if associations %}

Associated With

{% for assoc in associations %}
{% if assoc.entity_type == 'device' %} Device: {{ assoc.entity_name }} ({{ assoc.entity_id }}) {% elif assoc.entity_type == 'site' %} Site: {{ assoc.entity_name }} ({{ assoc.entity_id }}) {% endif %}
{% endfor %}
{% endif %}
Back to Notes
{% endblock %}