Sha256: f5bd100904abdaba78d48e9272a2dde64f2932999d0b3956843585d2155c26d1

Contents?: true

Size: 1.37 KB

Versions: 2

Compression:

Stored size: 1.37 KB

Contents

<div class= "dashboard clearfix">
  <h3 >
    <%= h t('ApplicationRevisions', application_name: @application.name) %>
  </h3>
</div>

<div class="table_container">
  <table class="revisions table table-hover table-bordered table-striped table-white">
    <thead>
      <th class='col col-status'><%= h t('Status') %></th>
      <th class='col col-revision'><%= h t('Revision') %></th>
    </thead>
    <tbody>
    <% @revisions.each do |revision| %>
      <tr class='revision revision-<%= css_class_name(revision.name) %>'>
        <td class='col col-status' width="15%">
          <% if revision.active? %>
            Active
          <% else %>
            <form action="<%= h root_path %><%= h revision_activate_path(revision) %>" method="post">
              <%= csrf_tag %>
              <input class="btn btn-warn btn-xs" type="submit" name="activate" value="<%= h t('MakeActive') %>" data-confirm="<%= h t('AreYouSureActivateRevision', revision: revision.name) %>" />
            </form>
          <% end %>
        </td>
        <td class='col col-revision'>
          <%= h revision.name %>
          <% if revision_specifier_query_param && !revision.active? %>
            <a target='_new' href="<%= h revision_test_url(revision) %>">
              <%= h t('TestThisRevision') %>
            </a>
          <% end %>
        </td>
      </tr>
    <% end %>
    </tbody>
  </table>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ember_cli_deploy_redis-1.0.2 web/views/application.erb
ember_cli_deploy_redis-1.0.1 web/views/application.erb