Sha256: ef1396208e605974146c04dffb7e3342cf08d5076bb2b814d78ecb9e2f7bd8e4
Contents?: true
Size: 960 Bytes
Versions: 10
Compression:
Stored size: 960 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 %> </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 > 50 %> <p class="pull-right"><%= link_to "View All", pulls_path(:deploys => @deploy.id) %></p> <% end %> </div> </div> </div>
Version data entries
10 entries across 10 versions & 1 rubygems