occurrences.ejs 488 B

1234567891011121314
  1. <article class="utility-card">
  2. <h3><%= title %></h3>
  3. <% if (!items.length) { %>
  4. <p class="muted">暂无计划。</p>
  5. <% } %>
  6. <div class="timeline">
  7. <% items.forEach((item) => { %>
  8. <div class="timeline-item">
  9. <strong><%= item.date %> 周<%= weekdayLabel(item.weekday) %> <%= item.time %></strong>
  10. <span><%= actionLabel(item.action) %> · <%= targetLabel(item.target_channel) %> · <%= item.name %></span>
  11. </div>
  12. <% }) %>
  13. </div>
  14. </article>