Sha256: d02947348de840ffbdf35cb40c6021142df0d37bf578eb42b7276a9c12c8d9b6

Contents?: true

Size: 1.43 KB

Versions: 3

Compression:

Stored size: 1.43 KB

Contents

<div class="row single-user">

  <!-- Show the avatar of the githuber user and the user's username -->
  <div class="user-image col-lg-1 col-md-1 col-sm-1" >
    <img src= <%= user.avatar_url%> alt= <%= user.login %> >
  </div>
  <div class="user-info col-lg-3 col-md-3 col-sm-3">
    <h4> 
      <%= link_to user.login, user_path(user) %>
    </h4>
    <br>
    <h4>
      <a class="subtle" href=<%= user.html_url %> > 
        <span class="octicon octicon-mark-github"></span>
        <span class="octicon octicon-logo-github"></span> 
      </a>
    </h4>
  </div>

  <!-- Show the basic stats for this user for this user -->
  <div class="col-lg-2 col-md-2 col-sm-2">
    <div class="text-center">
      <span class="text-large"><%= user.deploy_count %></span>
      <span class="mega-octicon octicon-rocket"></span>
    </div>
  </div>
  <div class="col-lg-2 col-md-2 col-sm-2">
    <div class="text-center">
      <span class="text-large"><%= user.pull_request_count %></span>
      <span class="mega-octicon octicon-git-pull-request"></span>
    </div>
  </div>
  <div class="col-lg-2 col-md-2 col-sm-2">
    <div class="text-center">
      <span class="text-large"><%= user.comment_count %></span>
      <span class="mega-octicon octicon-comment"></span>
    </div>
  </div>
  <div class="col-lg-2 col-md-2 col-sm-2">
    <div class="text-center">
      <span class="text-large"><%= user.additions - user.deletions %></span>
    </div>
  </div>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hubstats-0.4.4 app/views/hubstats/partials/_user.html.erb
hubstats-0.4.2 app/views/hubstats/partials/_user.html.erb
hubstats-0.4.1 app/views/hubstats/partials/_user.html.erb