Sha256: 9f99c7c7b0eb2b2b67122ddce3eda950bc1407aca8f1b7b4244f6a6dd422071b

Contents?: true

Size: 1.06 KB

Versions: 7

Compression:

Stored size: 1.06 KB

Contents

<div class="container" id="user">
  <div class="row">

    <!-- Title with the user's GitHub username -->
    <h1 class="title text-center"><a href=<%=@user.html_url%>> <%= @user.login %></a> </h1>

    <!-- Show all of the stats about the user -->
    <%= render 'hubstats/partials/quick_stats_one' %>
  </div>

  <div class="row">

    <!-- Show all of this user's merged pull requests in a "condensed" view -->
    <div class="col-lg-6 col-md-5 col-sm-5 col-xs-5">
      <h3> Merged Pull Requests</h3> 
      <%= render 'hubstats/tables/pulls-condensed' %>
      <% if @pull_count > 20 %>
        <p class="pull-right"><%= link_to "View All", pulls_path(:users => @user.id) %></p>
      <% end %>
    </div>

    <!-- Show all of this user's deploys in a "condensed" view -->
    <div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
      <h3> Deployments </h3>
      <%= render 'hubstats/tables/deploys-condensed' %>
      <% if @deploy_count > 20 %>
        <p class="pull-right"><%= link_to "View All", deploys_path(:users => @user.id) %></p>
      <% end %>
    </div>
  </div>
</div>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hubstats-0.5.12 app/views/hubstats/users/show.html.erb
hubstats-0.5.11 app/views/hubstats/users/show.html.erb
hubstats-0.5.10 app/views/hubstats/users/show.html.erb
hubstats-0.5.9 app/views/hubstats/users/show.html.erb
hubstats-0.5.7 app/views/hubstats/users/show.html.erb
hubstats-0.5.6 app/views/hubstats/users/show.html.erb
hubstats-0.5.5 app/views/hubstats/users/show.html.erb