bliss/views/workshop/logs.eta

7 lines
301 B
Text
Raw Normal View History

2024-10-29 21:29:40 -04:00
<div hx-swap="outerHTML" hx-get="/workshop/<%= it.structId %>/route/<%= it.routeId %>/logs?since=<%= it.since || 0 %>" hx-trigger="every 2s" class="hidden"></div>
<% it.logs.forEach((log) => { %>
<div class="<% if (log.error) { %>bg-red-800 text-white <% } %>">
<%= log.content %>
</div>
<% }) %>