{% extends "base.html" %} {% block content %}

{{ note.title }}

{{ note.subject.name }} {{ note.note_type.name }} {{ note.user.name }} Avatar by {{ note.user.name }} {{ note.created_at.strftime('%b %d, %Y') }}
{% if note.description %}

{{ note.description }}

{% endif %}
Back to Notes
{% if preview.kind == 'youtube' %}
{% elif preview.kind == 'image' %} {{ note.title }} {% elif preview.kind == 'pdf' %} {% elif preview.kind == 'video' %} {% elif preview.kind == 'audio' %}
{% elif preview.kind == 'text' %} {% elif preview.kind == 'document' %} {% elif preview.kind == 'iframe' %} {% else %}

Inline preview is not available for this resource.

Open in new tab
{% endif %}
{% if current_user.id == note.user_id %} Edit {% endif %} {% if note.presigned_url %} {% if note.original_link %} Go To Site {% else %} Download {% endif %} {% endif %} Share
{% endblock %}