jmou/cgithub
git clone https://github.com/jmou/cgithub.git
git clone git@github.com:jmou/cgithub.git
Loading…
(top)/views/pulls.eta
448 Bytes / 15 lines / 14 loc
History
View raw
<% layout("/layouts/repo.eta"); it.searchType = "pullrequests" %>

<table>
  <% for (const pull of it.pulls) { %>
    <tr>
      <td>#<%= pull.number %></td>
      <td>
        <a href="/<%= it.repo.owner %>/<%= it.repo.name %>/pull/<%= pull.number %>">
          <%= pull.title %>
        </a>
      </td>
      <td class="timestamp"><time title="<%= pull.createdAt %>"><%= pull.createdAt.split("T")[0] %></time></td>
    </tr>
  <% } %>
</table>