17 lines
482 B
HTML
17 lines
482 B
HTML
<tr>
|
|
<th class="bg-{{bg_color}}">
|
|
{% 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="label label-{{bg_label_color}}" style="padding:2px 5px;">{{label}}</span>
|
|
{% endfor %}
|
|
</div>
|
|
</th>
|
|
<td style="background-color:#fff"><p>{{text | linebreaks }}</p></td>
|
|
</tr>
|