Sha256: 59eea5371ec8eb9fe482e5c09a0827f9c106ea04966f74d7e2e25f0d9f38e359

Contents?: true

Size: 969 Bytes

Versions: 7

Compression:

Stored size: 969 Bytes

Contents

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

    <!-- Title with the repo name and git revision sha -->
    <h1 class="title text-center">
      <%= link_to @deploy.repo.name.titleize, repo_path(@deploy.repo.name) %> /
      <%= @deploy.git_revision.titleize %>
    </h1>

    <!-- Show the date/time that the deploy was deployed -->
    <h4 class="text-center">
      Deployed at: <%= @deploy.deployed_at %>
    </h4>

    <!--Show the number of pull requests, comments, and net additions-->
    <%= render "hubstats/partials/quick_stats_one" %>
  </div>

  <!--Show all of the pull requests in a "condensed" view -->
  <div class="col col-lg-8 col-lg-offset-2">
    <div class="row">
      <h4> Merged Pull Requests </h4>
      <%= render 'hubstats/tables/pulls-condensed' %>
      <% if @pull_request_count > 20 %>
        <p class="pull-right"><%= link_to "View All", pulls_path(:deploys => @deploy.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/deploys/show.html.erb
hubstats-0.5.11 app/views/hubstats/deploys/show.html.erb
hubstats-0.5.10 app/views/hubstats/deploys/show.html.erb
hubstats-0.5.9 app/views/hubstats/deploys/show.html.erb
hubstats-0.5.7 app/views/hubstats/deploys/show.html.erb
hubstats-0.5.6 app/views/hubstats/deploys/show.html.erb
hubstats-0.5.5 app/views/hubstats/deploys/show.html.erb