##// END OF EJS Templates
Lists can be reordered with drag and drop (#12909)....
Lists can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15336 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14515:ae045cdac99e
r14954:42b5c332b2c2
Show More
index.html.erb
31 lines | 1001 B | text/plain | TextLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Jean-Philippe Lang
* all icons replaced (new icons are based on GPL icon set: "KDE Crystal Diamond 2.5" -by paolino- and "kNeu! Alpha v0.1" -by Pablo Fabregat-)...
r154 <%= link_to l(:label_auth_source_new), {:action => 'new'}, :class => 'icon icon-add' %>
Jean-Philippe Lang
contextual links redesign...
r90 </div>
Jean-Philippe Lang
Adds missing html titles (#14517)....
r11820 <%= title l(:label_auth_source_plural) %>
Jean-Philippe Lang
0.3 unstable...
r10
Jean-Philippe Lang
css cleaning...
r105 <table class="list">
<thead><tr>
Toshi MARUYAMA
replace tabs to spaces at app/views/auth_sources/index.html.erb...
r7244 <th><%=l(:field_name)%></th>
<th><%=l(:field_type)%></th>
<th><%=l(:field_host)%></th>
<th><%=l(:label_user_plural)%></th>
<th></th>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
<tbody>
Jean-Philippe Lang
0.3 unstable...
r10 <% for source in @auth_sources %>
Jean-Philippe Lang
Adds ids on rows in auth_sources/index view (#9659)....
r7803 <tr id="auth-source-<%= source.id %>" class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <td class="name"><%= link_to(source.name, :action => 'edit', :id => source)%></td>
<td><%= source.auth_method_name %></td>
<td><%= source.host %></td>
<td><%= source.users.count %></td>
Jean-Philippe Lang
View cleanup....
r3127 <td class="buttons">
Jean-Philippe Lang
Code cleanup in AuthSource controller and views....
r10767 <%= link_to l(:button_test), try_connection_auth_source_path(source), :class => 'icon icon-test' %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= delete_link auth_source_path(source) %>
Jean-Philippe Lang
View cleanup....
r3127 </td>
Jean-Philippe Lang
css cleaning...
r105 </tr>
Jean-Philippe Lang
0.3 unstable...
r10 <% end %>
Jean-Philippe Lang
css cleaning...
r105 </tbody>
Jean-Philippe Lang
0.3 unstable...
r10 </table>
Jean-Philippe Lang
Use ul tags to do pagination (#21258)....
r14515 <span class="pagination"><%= pagination_links_full @auth_source_pages %></span>