Sha256: c1bd9dbf8b64415e678088f1fb38b93b701a3ceab7b892e866d37cd155011f20

Contents?: true

Size: 1.11 KB

Versions: 8

Compression:

Stored size: 1.11 KB

Contents

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

    <!-- Title with the repo name -->
    <h1 class="title text-center"><a href=<%=@repo.html_url%>> <%= @repo.name.titleize %> </a></h1>

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

  <div class="row">

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

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

Version data entries

8 entries across 8 versions & 1 rubygems

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