Sha256: a452a328421909171262e611f5a07e1d1f3223e10a139b16916904fde0bf5655
Contents?: true
Size: 1.15 KB
Versions: 8
Compression:
Stored size: 1.15 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" if User.ommiauth_enabled %>
Version data entries
8 entries across 8 versions & 1 rubygems