Sha256: d7e8fe17473a362306e52f5c2a8fbb3e1c1cbecf80ca22532b597648ecd98187
Contents?: true
Size: 1.13 KB
Versions: 3
Compression:
Stored size: 1.13 KB
Contents
<% if @authentications.size > 0 %> <table class="authentications resource"> <thead> <tr> <th class="t-left">Провайдер</th> <th>UID</th> <th>Email</th> <th>Имя</th> <th>Управление</th> </tr> </thead> <% @authentications.each do |authentication| %> <tr> <td class="t-left provider"> <img width="16" height="16" src="/assets/sc/64/<%= authentication.provider %>.png" alt="<%= authentication.provider %>" /> <div><%= authentication.provider.titleize %></div> </td> <td> <%= authentication.uid %> </td> <td> <%= truncate authentication.email, :length => 30 %> </td> <td> <%= truncate authentication.name, :length => 30 %> </td> <td> <%= link_to t("delete"), authentication, :confirm => t("shure"), :method => :delete, :class => "delete" %> </td> </tr> <% end %> </table> <div class="clear"></div> <% else %> <p>Авторизаций не найдено.</p> <% end %> <%= render "devise/shared/social_links" %>
Version data entries
3 entries across 3 versions & 1 rubygems