Sha256: 0c5bcd2a0a04e6a1df8b3082784b4f5e37970c4e9f3e8229fd565195a8049ca8

Contents?: true

Size: 850 Bytes

Versions: 2

Compression:

Stored size: 850 Bytes

Contents

<div class= "dashboard clearfix">
  <h3 >
    <%= h t('DeployedApplications') %>
  </h3>
</div>

<div class="table_container">
  <table class="applications table table-hover table-bordered table-striped table-white">
    <thead>
      <th class='col col-application'><%= h t('Application') %></th>
      <th class='col col-current-revision'><%= h t('CurrentRevision') %></th>
    </thead>
    <tbody>
    <% @applications.each do |application| %>
      <tr class='application'>
        <td class='col col-application'>
          <a href="<%= h root_path %><%= h application_path(application) %>"><%= h application.name %></a>
        </td>
        <td class='col col-current-revision'>
          <%= h application.active_revision ? application.active_revision.name : t('none')%>
        </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/dashboard.erb
ember_cli_deploy_redis-1.0.1 web/views/dashboard.erb