##// END OF EJS Templates
Replaces find(:first) calls in migrations....
Replaces find(:first) calls in migrations. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10929 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10462:7729178d9d50
r10702:738cf2e187f9
Show More
index.html.erb
58 lines | 2.6 KiB | text/plain | TextLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Jean-Philippe Lang
User forms cleanup....
r7769 <%= link_to l(:label_user_new), new_user_path, :class => 'icon icon-add' %>
Jean-Philippe Lang
contextual links redesign...
r90 </div>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_user_plural)%></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({}, :method => :get) do %>
Jean-Philippe Lang
added a status filter on users/list...
r344 <fieldset><legend><%= l(:label_filter_plural) %></legend>
Toshi MARUYAMA
[#9489] linked labels to their element...
r7568 <label for='status'><%= l(:field_status) %>:</label>
Jean-Philippe Lang
Adds user count in status drop down on admin user list....
r1734 <%= select_tag 'status', users_status_options_for_select(@status), :class => "small", :onchange => "this.form.submit(); return false;" %>
Jean-Philippe Lang
Adds a Group filter on the admin users list (#7893)....
r5030
<% if @groups.present? %>
Toshi MARUYAMA
[#9489] linked labels to their element...
r7568 <label for='group_id'><%= l(:label_group) %>:</label>
Jean-Philippe Lang
Fixed that group filter is escaped on users index....
r9496 <%= select_tag 'group_id', content_tag('option') + options_from_collection_for_select(@groups, :id, :name, params[:group_id].to_i), :onchange => "this.form.submit(); return false;" %>
Jean-Philippe Lang
Adds a Group filter on the admin users list (#7893)....
r5030 <% end %>
Toshi MARUYAMA
[#9489] linked labels to their element...
r7568 <label for='name'><%= l(:label_user) %>:</label>
Jean-Philippe Lang
Adds the ability to search for a user on the administration users list....
r1943 <%= text_field_tag 'name', params[:name], :size => 30 %>
<%= submit_tag l(:button_apply), :class => "small", :name => nil %>
Jean-Philippe Lang
Adds links to reset filters on users and projects list....
r5031 <%= link_to l(:button_clear), users_path, :class => 'icon icon-reload' %>
Jean-Philippe Lang
added a status filter on users/list...
r344 </fieldset>
<% end %>
&nbsp;
Jean-Philippe Lang
Removes overflow:auto on #content which broke the fix in r2118 (#4724)....
r3262 <div class="autoscroll">
Toshi MARUYAMA
remove trailing white-spaces from app/views/users/index.html.erb...
r7255 <table class="list">
Jean-Philippe Lang
css cleaning...
r105 <thead><tr>
Toshi MARUYAMA
replace tabs to spaces at app/views/users/index.html.erb...
r7245 <%= sort_header_tag('login', :caption => l(:field_login)) %>
<%= sort_header_tag('firstname', :caption => l(:field_firstname)) %>
<%= sort_header_tag('lastname', :caption => l(:field_lastname)) %>
<%= sort_header_tag('mail', :caption => l(:field_mail)) %>
<%= sort_header_tag('admin', :caption => l(:field_admin), :default_order => 'desc') %>
<%= sort_header_tag('created_on', :caption => l(:field_created_on), :default_order => 'desc') %>
<%= sort_header_tag('last_login_on', :caption => l(:field_last_login_on), :default_order => 'desc') %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <th></th>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
<tbody>
Jean-Philippe Lang
Slight changes on users list view and hide Anonymous user....
r1104 <% for user in @users -%>
Jean-Philippe Lang
Adds links to locked users when current user is admin....
r10462 <tr class="<%= user.css_classes %> <%= cycle("odd", "even") %>">
Toshi MARUYAMA
replace tabs to spaces at app/views/users/index.html.erb...
r7245 <td class="username"><%= avatar(user, :size => "14") %><%= link_to h(user.login), edit_user_path(user) %></td>
<td class="firstname"><%= h(user.firstname) %></td>
<td class="lastname"><%= h(user.lastname) %></td>
<td class="email"><%= mail_to(h(user.mail)) %></td>
<td align="center"><%= checked_image user.admin? %></td>
<td class="created_on" align="center"><%= format_time(user.created_on) %></td>
<td class="last_login_on" align="center"><%= format_time(user.last_login_on) unless user.last_login_on.nil? %></td>
Jean-Philippe Lang
Enable ability for administrators to delete users (#7296)....
r4609 <td class="buttons">
Toshi MARUYAMA
replace tabs to spaces at app/views/users/index.html.erb...
r7245 <%= change_status_link(user) %>
Jean-Philippe Lang
Fixed that destroying a user from the edit page returns a 404 response (#11691)....
r10057 <%= delete_link user_path(user, :back_url => users_path(params)) unless User.current == user %>
Jean-Philippe Lang
Enable ability for administrators to delete users (#7296)....
r4609 </td>
Jean-Philippe Lang
Initial commit...
r2 </tr>
Jean-Philippe Lang
Slight changes on users list view and hide Anonymous user....
r1104 <% end -%>
Jean-Philippe Lang
css cleaning...
r105 </tbody>
Jean-Philippe Lang
Initial commit...
r2 </table>
Jean-Philippe Lang
Removes overflow:auto on #content which broke the fix in r2118 (#4724)....
r3262 </div>
Jean-Philippe Lang
New setting added to specify how many objects should be displayed on most paginated lists....
r1013 <p class="pagination"><%= pagination_links_full @user_pages, @user_count %></p>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_user_plural)) -%>