annotate app/views/repositories/_dir_list.html.erb @ 1524:82fac3dcf466 redmine-2.5-integration

Fix failure to interpret Javascript when autocompleting members for project
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 11 Sep 2014 10:24:38 +0100
parents 433d4f72a19b
children 63650ae64bf2
rev   line source
Chris@1115 1 <div class="autoscroll">
Chris@0 2 <table class="list entries" id="browser">
Chris@0 3 <thead>
Chris@0 4 <tr id="root">
Chris@0 5 <th><%= l(:field_name) %></th>
Chris@0 6 <th><%= l(:field_filesize) %></th>
Chris@441 7 <% if @repository.report_last_commit %>
Chris@441 8 <th><%= l(:label_revision) %></th>
Chris@441 9 <th><%= l(:label_age) %></th>
Chris@441 10 <th><%= l(:field_author) %></th>
Chris@441 11 <th><%= l(:field_comments) %></th>
Chris@441 12 <% end %>
Chris@0 13 </tr>
Chris@0 14 </thead>
Chris@0 15 <tbody>
Chris@0 16 <%= render :partial => 'dir_list_content' %>
Chris@0 17 </tbody>
Chris@0 18 </table>
Chris@1115 19 </div>