jmou/cgithub
git clone https://github.com/jmou/cgithub.git
git clone git@github.com:jmou/cgithub.git
Loading…
(top)/views/issues.eta
633 Bytes / 20 lines / 19 loc
History
View raw
<% layout("/layouts/repo.eta"); it.searchType = "issues" %>

<table>
  <% for (const issue of it.issues) { %>
    <tr>
      <td>#<%= issue.number %></td>
      <td>
        <a href="/<%= it.repo.owner %>/<%= it.repo.name %>/issues/<%= issue.number %>">
          <%= issue.title %>
        </a>
      </td>
      <td>
        <% if (issue.commentCount > 0) { %>
          <img src="/static/icons/link.svg" alt="comments" class="icon"> <%= issue.commentCount %>
        <% } %>
      </td>
      <td class="timestamp"><time title="<%= issue.createdAt %>"><%= issue.createdAt.split("T")[0] %></time></td>
    </tr>
  <% } %>
</table>