Files
django-maraudes/suivi/templates/suivi/sujet_suivi.html
2016-09-08 18:41:50 +02:00

17 lines
690 B
HTML

{% load notes %}
<div class="panel panel-primary">
<div class="panel-heading" role="tab" id="notesSujetHeading">
<h3 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseNotesSujet" aria-expanded="true" aria-controls="collapseOne">
Notes</a><span class="pull-right label">Total : {{ notes.count }}</span></h3>
</div>
<div id="collapseNotesSujet" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="notesSujetHeading">
<table class="table table-striped table-bordered">
{% for note in notes %}
{% inline_table note header="date" %}
{% endfor %}
</table>
</div>
</div>