fix indendation in dcav-index.erb
This commit is contained in:
parent
ab55e98974
commit
9df423a720
|
@ -16,13 +16,13 @@
|
||||||
<th>Count</th>
|
<th>Count</th>
|
||||||
<th>Size</th>
|
<th>Size</th>
|
||||||
</tr>
|
</tr>
|
||||||
<% count = 0
|
<% order = 0
|
||||||
users.sort.each do |user|
|
users.sort.each do |user|
|
||||||
count += 1
|
order += 1
|
||||||
%>
|
%>
|
||||||
<%= %Q{
|
<%= %Q{
|
||||||
<tr>
|
<tr>
|
||||||
<td>#{count}</td>
|
<td>#{order}</td>
|
||||||
<td>#{user.name}</td>
|
<td>#{user.name}</td>
|
||||||
<td class=\"right-align\">#{user.count}</td>
|
<td class=\"right-align\">#{user.count}</td>
|
||||||
<td class=\"right-align\">#{Filesize.from(user.size.to_s + "B").pretty}</td>
|
<td class=\"right-align\">#{Filesize.from(user.size.to_s + "B").pretty}</td>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user