Files
django-maraudes/notes/templates/notes/table_inline.html
2018-10-14 17:24:48 +02:00

17 lines
510 B
HTML

<tr >
<th class="border-{{bg_color}}" width="20%">
{% if link %}
<a href="{{link}}"><strong>{{header}}</strong></a>
{% else %}
<strong>{{header}}</strong>
{% endif %} <small>{{small}}</small>
<br />
<div style="margin:5px 0px;">
{% for label in labels %}
<span class="badge badge-{{bg_label_color}}" style="padding:2px 5px;">{{label}}</span>
{% endfor %}
</div>
</th>
<td class="border-{{bg_color}}" width="80%"><p>{{text | linebreaks }}</p></td>
</tr>