Sha256: 037feac291ba99408e8bb233ee5305d1f285f9e39baab776f78f332095e4a8b4

Contents?: true

Size: 836 Bytes

Versions: 1

Compression:

Stored size: 836 Bytes

Contents

<div class= "dashboard clearfix">
  <h3 >
    <%= 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'><%= t('Application') %></th>
      <th class='col col-current-revision'><%= t('CurrentRevision') %></th>
    </thead>
    <tbody>
    <% @applications.each do |application| %>
      <tr class='application'>
        <td class='col col-application'>
          <a href="<%= root_path %>applications/<%= application.name %>"><%= application.name %></a>
        </td>
        <td class='col col-current-revision'>
          <%= application.active_revision ? application.active_revision.name : t('none')%>
        </td>
      </tr>
    <% end %>
    </tbody>
  </table>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ember_cli_deploy_redis-1.0.0 web/views/dashboard.erb