##// END OF EJS Templates
Ability to edit a wiki page's parent on the edit page (#6449)....
Ability to edit a wiki page's parent on the edit page (#6449). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8787 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8032:467503fd4b5a
r8667:001b255b081b
Show More
projects.html.erb
45 lines | 2.2 KiB | text/plain | TextLexer
/ app / views / admin / projects.html.erb
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>
Toshi MARUYAMA
[#9489] link label to element...
r7561 <label for='status'><%= l(:field_status) %> :</label>
Jean-Philippe Lang
Added the ability to archive projects:...
r546 <%= select_tag 'status', project_status_options_for_select(@status), :class => "small", :onchange => "this.form.submit(); return false;" %>
Toshi MARUYAMA
[#9489] link label to element...
r7561 <label for='name'><%= l(:label_project) %>:</label>
Jean-Philippe Lang
Adds the ability to search for a project name or identifier on the administration projects list....
r1945 <%= 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), {:controller => 'admin', :action => 'projects'}, :class => 'icon icon-reload' %>
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>
Toshi MARUYAMA
replace tabs to spaces at app/views/admin/projects.html.erb...
r7239 <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 %>">
Toshi MARUYAMA
replace tabs to spaces at app/views/admin/projects.html.erb...
r7239 <td class="name"><span><%= link_to_project(project, {:action => 'settings'}, :title => project.short_description) %></span></td>
<td align="center"><%= checked_image project.is_public? %></td>
<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') %>
Jean-Philippe Lang
Changed ProjectsController#destroy to DELETE only....
r8032 <%= link_to(l(:button_delete), project_path(project), :method => :delete, :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)) -%>