Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930
  1. <h2><%=l(:label_auth_source_plural)%></h2>
  2. <table class="listTableContent">
  3. <tr class="ListHead">
  4. <th><%=l(:field_name)%></th>
  5. <th><%=l(:field_type)%></th>
  6. <th><%=l(:field_host)%></th>
  7. <th></th>
  8. <th></th>
  9. </tr>
  10. <% for source in @auth_sources %>
  11. <tr class="<%= cycle("odd", "even") %>">
  12. <td><%= link_to source.name, :action => 'edit', :id => source%></td>
  13. <td align="center"><%= source.auth_method_name %></td>
  14. <td align="center"><%= source.host %></td>
  15. <td align="center">
  16. <%= link_to l(:button_test), :action => 'test_connection', :id => source %>
  17. </td>
  18. <td align="center">
  19. <%= button_to l(:button_delete), { :action => 'destroy', :id => source }, :confirm => l(:text_are_you_sure), :class => "button-small" %>
  20. </td>
  21. </tr>
  22. <% end %>
  23. </table>
  24. <%= pagination_links_full @auth_source_pages %>
  25. <br />
  26. <%= link_to '&#187; ' + l(:label_auth_source_new), :action => 'new' %>