##// END OF EJS Templates
Fixed: context submenus on the issue list don't show up with IE6....
Fixed: context submenus on the issue list don't show up with IE6. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1024 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r951:f58db70bdecd
r1011:7f3c5169400f
Show More
list.rhtml
20 lines | 807 B | text/html+ruby | RhtmlLexer
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 <h2><%=l(:label_project_plural)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Main project list now displays root projects with their subprojects....
r718 <% @project_tree.keys.sort.each do |project| %>
Jean-Philippe Lang
Project name format limitation removed (name can now contain any character)....
r936 <h3><%= link_to h(project.name), {:action => 'show', :id => project}, :class => (User.current.member_of?(project) ? "icon icon-fav" : "") %></h3>
Jean-Philippe Lang
Application layout refactored....
r736 <%= textilizable(project.description, :project => project) %>
Jean-Philippe Lang
Main project list now displays root projects with their subprojects....
r718
<% if @project_tree[project].any? %>
Jean-Philippe Lang
Application layout refactored....
r736 <p><%= l(:label_subproject_plural) %>:
Jean-Philippe Lang
Main project list now displays root projects with their subprojects....
r718 <%= @project_tree[project].sort.collect {|subproject|
Jean-Philippe Lang
Project name format limitation removed (name can now contain any character)....
r936 link_to(h(subproject.name), {:action => 'show', :id => subproject}, :class => (User.current.member_of?(subproject) ? "icon icon-fav" : ""))}.join(', ') %></p>
Jean-Philippe Lang
Main project list now displays root projects with their subprojects....
r718 <% end %>
Jean-Philippe Lang
Initial commit...
r2 <% end %>
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
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 <div class="contextual">
<span class="icon icon-fav"><%= l(:label_my_projects) %></span>
</div>
<% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
<% set_html_title l(:label_project_plural) -%>