##// END OF EJS Templates
Removed the 12 characters limit on passwords....
Removed the 12 characters limit on passwords. git-svn-id: http://redmine.rubyforge.org/svn/trunk@927 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r546:413247ee5b16
r914:fde4a42e2aa5
Show More
_issueswatched.rhtml
10 lines | 648 B | text/html+ruby | RhtmlLexer
/ app / views / my / blocks / _issueswatched.rhtml
Jean-Philippe Lang
Added a new block available for my page: "Watched issues"...
r453 <h3><%=l(:label_watched_issues)%></h3>
<% watched_issues = Issue.find(:all,
:include => [:status, :project, :tracker, :watchers],
:limit => 10,
Jean-Philippe Lang
Added the ability to archive projects:...
r546 :conditions => ["#{Watcher.table_name}.user_id = ? AND #{Project.table_name}.status=#{Project::STATUS_ACTIVE}", user.id],
Jean-Philippe Lang
Added a new block available for my page: "Watched issues"...
r453 :order => "#{Issue.table_name}.updated_on DESC") %>
<%= render :partial => 'issues/list_simple', :locals => { :issues => watched_issues } %>
<% if watched_issues.length > 0 %>
<p><%=lwr(:label_last_updates, watched_issues.length)%></p>
<% end %>