Jarvis/jarvis/followup/templates/notes/details.html

20 lines
678 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="card mb-0">
<div class="card-header">
<h3 class="mb-0"><a href="{% url 'gymnast_details_tab' note.gymnast.id 'scores' %}">{{ note.gymnast }}</a></h3>
<h4 class="card-title"> Note of {{ note.created_at | date:'d-m-Y' }}</h4>
</div>
<div class="card-body pb-0 mb-0">
<div class="row mr-1 ml-1 pb-0 mb-0">
<div class="col-md-12">
<p>{{ note.to_markdown | safe }}</p>
</div>
</div>
<a href="{% url 'note_update' note.id %}"><span class="tim-icons icon-pencil text-warning"></span></a><br /><br />
</div>
</div>
{% endblock %}