Skip to content

Instantly share code, notes, and snippets.

@tnt501muzinjomane
Created October 27, 2014 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tnt501muzinjomane/2e87395af6c6c7428f62 to your computer and use it in GitHub Desktop.
Save tnt501muzinjomane/2e87395af6c6c7428f62 to your computer and use it in GitHub Desktop.
<tbody>
<% @active_xfers.each do |active_xfer| %>
<tr>
<td><%= active_xfer.name %></td>
<td><%= active_xfer.status %></td>
<td><div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="<%= active_xfer.progress %>" aria-valuemin="0" aria-valuemax="100" style="width: <%= active_xfer.progress %>;">
<%= active_xfer.progress %>
</div>
</div></td>
<td><%= active_xfer.started %></td>
<td><%= active_xfer.finished %></td>
</tr>
<% end %>
</tbody>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment