##// END OF EJS Templates
Don't validate custom fields that are not editable (#19193)....
Don't validate custom fields that are not editable (#19193). git-svn-id: http://svn.redmine.org/redmine/trunk@14045 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r12711:f4e5025aed80
r13663:8667505e23b9
Show More
index.html.erb
33 lines | 986 B | text/plain | TextLexer
Eric Davis
Add ATOM auto discovery link to the Projects list. #5317...
r3662 <% content_for :header_tags do %>
<%= auto_discovery_link_tag(:atom, {:action => 'index', :format => 'atom', :key => User.current.rss_key}) %>
<% end %>
Jean-Philippe Lang
Activity enhancements:...
r1213 <div class="contextual">
Jean-Philippe Lang
Extract code to render project context links to helper (#16381)....
r12711 <%= render_project_action_links %>
Jean-Philippe Lang
Activity enhancements:...
r1213 </div>
Toshi MARUYAMA
code format cleanup app/views/projects/index.html.erb...
r11860 <h2><%= l(:label_project_plural) %></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Display a projects tree instead of a flat list in notification preferences (#11539)....
r10006 <div id="projects-index">
Toshi MARUYAMA
code format cleanup app/views/projects/index.html.erb...
r11860 <%= render_project_hierarchy(@projects) %>
Jean-Philippe Lang
Display a projects tree instead of a flat list in notification preferences (#11539)....
r10006 </div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% if User.current.logged? %>
Jean-Philippe Lang
Adds new projects atom feed (#1290)....
r1451 <p style="text-align:right;">
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <span class="my-project"><%= l(:label_my_projects) %></span>
Jean-Philippe Lang
Adds new projects atom feed (#1290)....
r1451 </p>
Jean-Philippe Lang
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 <% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% other_formats_links do |f| %>
Toshi MARUYAMA
replace a tab to spaces at app/views/projects/index.html.erb...
r7111 <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% end %>
Jean-Philippe Lang
Adds new projects atom feed (#1290)....
r1451
Jean-Philippe Lang
Ability to close projects (read-only) (#3640)....
r9700 <% content_for :sidebar do %>
<%= form_tag({}, :method => :get) do %>
<h3><%= l(:label_project_plural) %></h3>
<label for="closed"><%= check_box_tag 'closed', 1, params[:closed] %> <%= l(:label_show_closed_projects) %></label>
<p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p>
<% end %>
<% end %>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_project_plural)) -%>