Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 341
- Log:
Lots of changes to Hub to make it Rails 2.3.11 compatible. This is being
checked in as one large changeset because it doesn't really split down into
smaller components without having something that doesn't function in the
intermediate steps.
- Author:
- rool
- Date:
- Sat Mar 19 19:11:39 +0000 2011
- Size:
- 1589 Bytes
- Properties:
- Property svn:mergeinfo is set
1 | <b>Administrators, be warned!</b> If you delete an account it can only be |
2 | recreated by the person who created it originally. |
3 | |
4 | <p /> |
5 | <table class="list" style="font-size: 80%" border="1" align="center" cellspacing="1" cellpadding="4"> |
6 | <tr bgcolor="#eeeeee"> |
7 | <th>Owner</th> |
8 | <th>Last updated</th> |
9 | <th>Activated?</th> |
10 | <th>Remembered?</th> |
11 | <th>Password reset?</th> |
12 | <th>Actions</th> |
13 | </tr> |
14 | |
15 | <% @users.each do |user| -%><tr class="<%= cycle('even', 'odd') %>"> |
16 | <td> |
17 | <%= h(user.real_name) %><br /> |
18 | <a href="mailto:<%= h(user.email) %>"><%= h(user.email) %></a> |
19 | </td> |
20 | <td><%= user.updated_at %></td> |
21 | <%= boolean_cell(user.activated_at) %> |
22 | <%= expired_cell(user.remember_token_expires_at) %> |
23 | <%= expired_cell(user.password_reset_code_expires_at) %> |
24 | <%= list_actions(user) %> |
25 | </tr><% end %> |
26 | </table> |
27 | |
28 | <p align="center" class="paginator"> |
29 | <%= will_paginate @users %> |
30 | <% if @users.total_pages > 1 -%> |
31 | <%= link_to("All", :page => 0) %> |
32 | <% elsif (params.has_key?(:page) && params[:page] == '0') -%> |
33 | <%= link_to("Paged") %> |
34 | <% end -%> |
35 | </p> |
36 | |
37 | <p> |
38 | When you've finished managing accounts, you can |
39 | <%= link_to 'return to the control panel', :controller => 'tasks', :action => nil %>. |
40 | </p> |