16 lines
303 B
HTML
16 lines
303 B
HTML
{% load notes %}
|
|
<h3> Compte-rendu </h3>
|
|
|
|
<table class="table table-bordered">
|
|
{% for note in notes %}
|
|
{% inline_table note header="sujet" %}
|
|
{% endfor %}
|
|
</table>
|
|
|
|
<div class="well bg-info">
|
|
<p><strong>Informations</strong></p>
|
|
<p>Rencontres : {{ maraude.observation_count}}</p>
|
|
</div>
|
|
|
|
|