{% extends 'base.html' %} {% load crispy_forms_tags %} {% block title %}{{ note_detail.note_title }}{% endblock %} {% load humanize %} {% block content %}
{% include 'messages.html' %}
{% if note_detail %}

{{ note_detail.note_title }}

Last Updated: {{ note_detail.updated_at|naturaltime }}

{% for tag in note_detail.tags.all %} {{ tag.name }} {% endfor %}

{{ note_detail.get_message_as_markdown }}
{% endif %}
{% endblock %}