app/features/project/views/new_project.erb

Summary

Maintainability
Test Coverage
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-drawer">
  <header class="mdl-layout__header">
    <div class="mdl-layout__header-row">
      <span class="mdl-layout__title"><%= title %></span>
    </div>
  </header>

  <%= erb :"../../global/navigation" %>

  <main class="mdl-layout__content" style="padding: 40px">
    <table class="mdl-data-table mdl-js-data-table mdl-shadow--2dp">
      <thead>
        <tr>
          <th>Status</th>
          <th style="width: 300px;">Project Name</th>
        </tr>
      </thead>
      <tbody>
        <% repos.each do |repo| %>
          <tr style="cursor: pointer;">
            <td>💚</td>
            <td onclick="document.location = '/projects_erb/<%= repo.full_name %>/add';"><%= repo.full_name %></td>
          </tr>
        <% end %>
      </tbody>
    </table>
  </main>
</div>