##// END OF EJS Templates
Fixes display of archived child projects on the admin project list....
Fixes display of archived child projects on the admin project list. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4271 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4157:2fbf7bbcf1af
r4157:2fbf7bbcf1af
Show More
projects.rhtml
44 lines | 2.1 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Eric Davis
Refactor: rename method ProjectsController#add to ProjectsController#new...
r3955 <%= link_to l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add' %>
Jean-Philippe Lang
contextual links redesign...
r90 </div>
Jean-Philippe Lang
0.3 unstable...
r10 <h2><%=l(:label_project_plural)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Adds the ability to search for a project name or identifier on the administration projects list....
r1945 <% form_tag({}, :method => :get) do %>
Jean-Philippe Lang
Added the ability to archive projects:...
r546 <fieldset><legend><%= l(:label_filter_plural) %></legend>
<label><%= l(:field_status) %> :</label>
<%= select_tag 'status', project_status_options_for_select(@status), :class => "small", :onchange => "this.form.submit(); return false;" %>
Jean-Philippe Lang
Adds the ability to search for a project name or identifier on the administration projects list....
r1945 <label><%= l(:label_project) %>:</label>
<%= text_field_tag 'name', params[:name], :size => 30 %>
<%= submit_tag l(:button_apply), :class => "small", :name => nil %>
Jean-Philippe Lang
Added the ability to archive projects:...
r546 </fieldset>
<% end %>
&nbsp;
Jean-Philippe Lang
Removes overflow:auto on #content which broke the fix in r2118 (#4724)....
r3262 <div class="autoscroll">
Jean-Philippe Lang
css cleaning...
r105 <table class="list">
<thead><tr>
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <th><%=l(:label_project)%></th>
<th><%=l(:field_is_public)%></th>
<th><%=l(:field_created_on)%></th>
Jean-Philippe Lang
Cleaning projects administration list....
r2632 <th></th>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
<tbody>
Jean-Philippe Lang
Do not query the database for project level on projects list....
r3485 <% project_tree(@projects) do |project, level| %>
Eric Davis
Refactor: move method to Project#css_classes...
r3966 <tr class="<%= cycle("odd", "even") %> <%= project.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>">
Jean-Philippe Lang
Fixes display of archived child projects on the admin project list....
r4157 <td class="name"><span><%= link_to_project(project, {:action => 'settings'}, :title => project.short_description) %></span></td>
Jean-Philippe Lang
Adds an helper for displaying the 'checked' image....
r3486 <td align="center"><%= checked_image project.is_public? %></td>
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <td align="center"><%= format_date(project.created_on) %></td>
Jean-Philippe Lang
Cleaning projects administration list....
r2632 <td class="buttons">
Jean-Philippe Lang
Keep status filter on the projects list when un/archiving a project (#3530)....
r2706 <%= link_to(l(:button_archive), { :controller => 'projects', :action => 'archive', :id => project, :status => params[:status] }, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-lock') if project.active? %>
<%= link_to(l(:button_unarchive), { :controller => 'projects', :action => 'unarchive', :id => project, :status => params[:status] }, :method => :post, :class => 'icon icon-unlock') if !project.active? && (project.parent.nil? || project.parent.active?) %>
Eric Davis
Added the ability to copy a project in the Project Administration panel....
r2608 <%= link_to(l(:button_copy), { :controller => 'projects', :action => 'copy', :id => project }, :class => 'icon icon-copy') %>
Eric Davis
Refactor: convert the Projects routes to resources....
r3957 <%= link_to(l(:button_delete), project_destroy_confirm_path(project), :class => 'icon icon-del') %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </td>
Jean-Philippe Lang
Initial commit...
r2 </tr>
<% 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
Initial commit...
r2
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_project_plural)) -%>