Sha256: 467725f2e87d46ce4c79d6556f0a588253d9ac5b5f0d8e4b5d79054506502ab6
Contents?: true
Size: 1.02 KB
Versions: 6
Compression:
Stored size: 1.02 KB
Contents
<div class='toolbar'> <ul class='actions'> <li> <%= button_link_to t("new_user"), new_object_url, :icon => 'add' %></p> </li> </ul> <br class='clear' /> </div> <h1><%= t("listing_users") %></h1> <table class="index"> <thead> <th><%= order @search, :by => :email, :as => t("user") %></th> <th><%= t("action") %></th> </thead> <tbody> <%- @collection.each do |user|%> <tr id="<%= dom_id user %>"> <td width="350px"><%=link_to user.email, object_url(user) %></td> <td> <%= link_to_edit user %> <%= link_to_delete user %> </td> </tr> <% end %> </tbody> </table> <%= will_paginate(:prev => "« #{t('previous')}", :next => "#{t('next')} »") %> <% content_for :sidebar do %> <% form_for @search do |f| %> <div class="box"> <h3><%= t(:search) %></h3> <p> <%= t("email") %><br /> <%= f.text_field :email_contains, :size=>18 %> </p> <p><%= button t("search") %></p> </div> <% end %> <% end %>
Version data entries
6 entries across 6 versions & 2 rubygems