education/classroom

View on GitHub
app/views/orgs/roster_entries/assignment_repos/_linked_not_accepted.html.erb

Summary

Maintainability
Test Coverage
<div class='d-flex flex-row flex-justify-between flex-items-center assignment-repo-list-item'>
  <div class='d-flex'>
    <div>
      <%= link_to current_roster_entry.user.github_user.html_url, class: "tooltipped tooltipped-n", target: '_blank', 'aria-label' => current_roster_entry.user.github_user.login do %>
        <%= image_tag current_roster_entry.user.github_user.github_avatar_url(96), height: 48, width: 48, class: 'avatar avatar-large', alt: "@#{current_roster_entry.user.github_user.login}" %>
      <% end %>
    </div>
    <div class='d-flex flex-column flex-justify-around'>
      <div>
        <%= link_to current_roster_entry.user.github_user.html_url, class: "assignment-repo-github-url", target: '_blank' do %>
          <h3 class="css-truncate css-truncate-target"><%= current_roster_entry.identifier %></h3>
        <% end %>
      </div>
      <div class="assignment-properties">
        <%= render partial: 'shared/failed_repo_detail', locals: { text: "Not accepted" } %>
      </div>
    </div>
  </div>
</div>