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

20 lines
698 B
HTML
Raw Normal View History

2023-04-25 17:06:14 +02:00
{% 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> - {{ note.title }}</h3>
<p class="card-title text-muted"><b>{{ note.date | date:'j N Y' }}</b></p>
2023-04-25 17:06:14 +02:00
</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 %}