* Only administrators can archive/unarchive projects. * Once archived, the project is visible on the admin project listing only. It doesn't show up anywhere else in the app. Subprojects are also archived. * Archive/unarchive preserve everything on the project (issues, members, ...). * A subproject can not be unarchived if its parent project is archived. git-svn-id: http://redmine.rubyforge.org/svn/trunk@549 e93f8b46-1217-0410-a6f0-8f06a7374b81
11 lines
677 B
Plaintext
11 lines
677 B
Plaintext
<h3><%=l(:label_assigned_to_me_issues)%></h3>
|
|
<% assigned_issues = Issue.find(:all,
|
|
:conditions => ["assigned_to_id=? AND #{IssueStatus.table_name}.is_closed=? AND #{Project.table_name}.status=#{Project::STATUS_ACTIVE}", user.id, false],
|
|
:limit => 10,
|
|
:include => [ :status, :project, :tracker ],
|
|
:order => "#{Issue.table_name}.updated_on DESC") %>
|
|
<%= render :partial => 'issues/list_simple', :locals => { :issues => assigned_issues } %>
|
|
<% if assigned_issues.length > 0 %>
|
|
<p><%=lwr(:label_last_updates, assigned_issues.length)%></p>
|
|
<% end %>
|