##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15867:9814dcf231b5
r15869:b40d66f39fa8
Show More
projects.html.erb
48 lines | 2.2 KiB | text/plain | TextLexer
/ app / views / admin / projects.html.erb
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Jean-Philippe Lang
Use named routes....
r13662 <%= link_to l(:label_project_new), new_project_path, :class => 'icon icon-add' %>
Jean-Philippe Lang
contextual links redesign...
r90 </div>
Jean-Philippe Lang
Adds missing html titles (#14517)....
r11820 <%= title l(:label_project_plural) %>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({}, :method => :get) do %>
Jean-Philippe Lang
Added the ability to archive projects:...
r546 <fieldset><legend><%= l(:label_filter_plural) %></legend>
Jean-Philippe Lang
Remove superfluous spaces before colon (#24720)....
r15803 <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
Use named routes....
r13662 <%= link_to l(:button_clear), admin_projects_path, :class => 'icon icon-reload' %>
Jean-Philippe Lang
Added the ability to archive projects:...
r546 </fieldset>
<% end %>
&nbsp;
Jean-Philippe Lang
Don't show an empty table....
r15514 <% if @projects.any? %>
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
Adds pagination to admin project list....
r15373 <% project_tree(@projects, :init_level => true) do |project, level| %>
Jean-Philippe Lang
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
r15867 <tr class="<%= project.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>">
Jean-Philippe Lang
Use route helper in #link_to_project....
r10954 <td class="name"><span><%= link_to_project_settings(project, {}, :title => project.short_description) %></span></td>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td><%= checked_image project.is_public? %></td>
<td><%= format_date(project.created_on) %></td>
Jean-Philippe Lang
Cleaning projects administration list....
r2632 <td class="buttons">
Jean-Philippe Lang
Use named routes....
r13662 <%= link_to(l(:button_archive), archive_project_path(project, :status => params[:status]), :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-lock') unless project.archived? %>
<%= link_to(l(:button_unarchive), unarchive_project_path(project, :status => params[:status]), :method => :post, :class => 'icon icon-unlock') if project.archived? && (project.parent.nil? || !project.parent.archived?) %>
<%= link_to(l(:button_copy), copy_project_path(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
Don't show an empty table....
r15514 <span class="pagination"><%= pagination_links_full @project_pages, @project_count %></span>
<% else %>
<p class="nodata"><%= l(:label_no_data) %></p>
<% end %>