Sha256: 32e9d345493937405606957779dd6b8f9600bfd5426b3ac1b260e1d2a598cbb6

Contents?: true

Size: 759 Bytes

Versions: 3

Compression:

Stored size: 759 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

3 entries across 3 versions & 1 rubygems

Version Path
g5_sibling_deployer_engine-0.4.0 app/views/siblings/deploys/index.html.erb
g5_sibling_deployer_engine-0.3.3 app/views/siblings/deploys/index.html.erb
g5_sibling_deployer_engine-0.3.2 app/views/siblings/deploys/index.html.erb