Sha256: 84f9b325a429b3e8a1b7a206f35e91b689fe947c1a8834e74701726c08747654
Contents?: true
Size: 808 Bytes
Versions: 7
Compression:
Stored size: 808 Bytes
Contents
<% title "Siblings" %> <%= render partial: "siblings/nav", locals: { page: :siblings } %> <table class="table table-striped"> <thead> <tr> <td>Id</td> <td>Name</td> <td>Heroku app name</td> <td>Git repo</td> <td>Heroku repo</td> <td>Actions</td> </tr> </thead> <tbody> <% @siblings.each do |t| %> <tr> <td><%= t.id %></td> <td><%= t.name %></td> <td><%= t.heroku_app_name %></td> <td><%= t.git_repo %></td> <td><%= t.heroku_repo %></td> <td> <%= link_to 'UID', t.uid, class: "btn" %> <% unless t.main_app? %> <%= link_to "Deploy", deploy_sibling_path(t), class: "btn", method: :post %> <% end %> </td> </tr> <% end %> </tbody> </table>
Version data entries
7 entries across 7 versions & 1 rubygems