Created
October 27, 2014 14:46
-
-
Save tnt501muzinjomane/2e87395af6c6c7428f62 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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