Sha256: 95788567305a3130612b8fed715f386442bb2df689f627ae9dda723ebf7e3f6c

Contents?: true

Size: 822 Bytes

Versions: 7

Compression:

Stored size: 822 Bytes

Contents

<% title "Deploys" %>

<%= render partial: "siblings/nav", locals: { page: :deploys } %>

<table class="table table-striped">
  <thead>
    <tr>
      <td>Id</td>
      <td>Created at</td>
      <td>Heroku app name</td>
      <td>State</td>
      <td>Git repo</td>
      <td>Heroku Repo</td>
      <td>Sibling id</td>
      <td>Instruction id</td>
      <td>Manual</td>
    </tr>
  </thead>
  <tbody>
    <% @siblings_deploys.each do |t| %>
      <tr>
        <td><%= t.id %></td>
        <td><%= t.created_at %></td>
        <td><%= t.heroku_app_name %></td>
        <td><%= t.state %></td>
        <td><%= t.git_repo %></td>
        <td><%= t.heroku_repo %></td>
        <td><%= t.sibling_id %></td>
        <td><%= t.instruction_id %></td>
        <td><%= t.manual %></td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
g5_sibling_deployer_engine-0.7.0 app/views/siblings/deploys/index.html.erb
g5_sibling_deployer_engine-0.6.3 app/views/siblings/deploys/index.html.erb
g5_sibling_deployer_engine-0.6.2 app/views/siblings/deploys/index.html.erb
g5_sibling_deployer_engine-0.6.1 app/views/siblings/deploys/index.html.erb
g5_sibling_deployer_engine-0.5.0 app/views/siblings/deploys/index.html.erb
g5_sibling_deployer_engine-0.4.2 app/views/siblings/deploys/index.html.erb
g5_sibling_deployer_engine-0.4.1 app/views/siblings/deploys/index.html.erb