Sha256: b282947dfc6dbe11f748b37161c6db468952aeb93a3c05faa765169620374dd2

Contents?: true

Size: 616 Bytes

Versions: 1

Compression:

Stored size: 616 Bytes

Contents

<% unless @imports.empty? %>
  <div id="imports">
    <% @imports.each do |gallery, import| %>
      <h3>Migration of <%= gallery.name %> </h3>

      <p>The gallery has <%= import[0].total %> pictures to import. Now <%= import[0].total - import.size %> pictures already import</p>
      <table class="progress">
        <tbody>
          <tr>
            <td width="<%= ((import[0].total - import.size) * 100) / import[0].total %>%" class="made" />
            <td width="<%= (import.size * 100) / import[0].total %>%" class="wait"/>
          </tr>
        </tbody>
      </table>
    <% end %>
  </div>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pictrails-0.5.0 app/views/admin/galleries/_follow_import.html.erb