Adding the core applications code to the repository

This commit is contained in:
artus
2016-08-05 10:41:43 +02:00
parent 243ff9153e
commit 5f4faf46ec
155 changed files with 13176 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<div class="col-md-6">
<table class="table table-striped table-bordered">
{% for note in notes %}
<tr><th>{{note.date}}
<div class="pull-right">
<span class="label label-primary">{{ note.header_label }}</span>
{% for info in note.header_infos %}<span class="label label-info">{{ info }}</span>
{%endfor%}
</div>
</th></tr>
<tr><td>{{note.note}}</td></tr>
{% endfor %}
</table>
</div>