| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!doctype html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title><%= title %></title>
- <link rel="stylesheet" href="/styles.css">
- </head>
- <body>
- <%- include('partials/nav') %>
- <main>
- <section class="hero tile-light compact page-intro logs-intro">
- <p class="eyebrow">History</p>
- <h1>开关记录</h1>
- <p class="lead">显示最近 200 条记录,系统自动保留 60 天。</p>
- </section>
- <section class="tile-parchment compact logs-section">
- <div class="utility-card wide log-table-card">
- <div class="table-wrap table-scroll">
- <table>
- <thead><tr><th>时间</th><th>来源</th><th>动作</th><th>目标</th><th>结果</th><th>说明</th><th>Topic</th></tr></thead>
- <tbody>
- <% logs.forEach((log) => { %>
- <tr>
- <td><%= dayjs(log.created_at).format('YYYY-MM-DD HH:mm:ss') %></td>
- <td><%= log.source %></td>
- <td><%= actionLabel(log.action) %></td>
- <td><%= targetLabel(log.target_channel) %></td>
- <td><%= log.result %></td>
- <td><%= log.message || '' %></td>
- <td><%= log.topic || '' %></td>
- </tr>
- <% }) %>
- </tbody>
- </table>
- </div>
- </div>
- </section>
- </main>
- </body>
- </html>
|