]> git.ipfire.org Git - pbs.git/blame - src/templates/modules/log.html
bootstrap4: reworked log module
[pbs.git] / src / templates / modules / log.html
CommitLineData
fff1e935
JS
1<div class="table-responsive">
2 <ul class="list-unstyled">
3 {% for entry in entries %}
4 {% if entry.type == "comment" %}
5 {% module LogEntryComment(entry, **args) %}
6 {% else %}
7 {% module LogEntry(entry, **args) %}
8 {% end %}
f6e6ff79 9 {% end %}
fff1e935
JS
10 </ul>
11</div>