Sha256: 713a070a405e60d4b9c0b0b516b50bacbef73cc60c11c0839ade314e38729a27

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

Contents

<div class="row single-deploy">
  <div class="user-image-small col-lg-1 col-md-1 col-sm-1 col-xs-2" >
    <img src= <%= deploy.user.avatar_url%> alt= <%= deploy.user.login %> >
  </div>
  
  <!-- Show the git revision and when the deploy happened by whom -->
  <div class="deploy-info col-lg-6 col-md-6 col-sm-6 col-xs-5">
    <h4>
      <%= link_to deploy.git_revision, deploy_path(deploy) %> 
    </h4>
    by <%= link_to deploy.user.login, user_path(deploy.user) %>
    <%= "#{time_ago_in_words(deploy.deployed_at)} ago "%>
  </div>

  <!-- Show all of the pull requests linked to the github PR -->
  <div class="col-lg-5 col-md-5 col-sm-5">
    <div class="deploy-right">
      <% deploy.pull_requests.each_with_index do |pull_request, index| %>
        <% if index == deploy.pull_requests.size - 1 %>
          <%= link_to pull_request.number.to_s, pull_request.html_url %>
          <span class="octicon octicon-mark-github"></span>
        <% else %>
          <%= link_to pull_request.number.to_s, pull_request.html_url %>,
        <% end %>
      <% end %>
    </div>
  </div>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hubstats-0.3.5 app/views/hubstats/partials/_deploy-condensed.html.erb