mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 10:41:34 +00:00
16 lines
No EOL
443 B
Text
16 lines
No EOL
443 B
Text
<div class="notes bg-light border">
|
|
<b>{{ i18n("notes") }}</b>
|
|
{% if (not isEmptyString(title)) then %}
|
|
<p class='mb-1'>{* title *}</p>
|
|
{% end %}
|
|
{%
|
|
local tag = ternary(is_ordered, "ol", "ul")
|
|
%}
|
|
<{{tag}}>
|
|
{% for i, note in ipairs(notes) do %}
|
|
{% if not note.hidden then %}
|
|
<li>{* note.content *}</li>
|
|
{% end %}
|
|
{% end %}
|
|
</{{tag}}>
|
|
</div> |