##// END OF EJS Templates
Extracts user groups assignment from controller....
Extracts user groups assignment from controller. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4499 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3955:2295b61cb6fd
r4385:0a2ec6ef0472
Show More
index.rhtml
26 lines | 1.1 KiB | text/html+ruby | RhtmlLexer
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">
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') + ' |' if User.current.allowed_to?(:add_project, nil, :global => true) %>
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 <%= link_to(l(:label_issue_view_all), { :controller => 'issues' }) + ' |' if User.current.allowed_to?(:view_issues, nil, :global => true) %>
Eric Davis
Add a link to the cross project time entries page to /projects. #4935...
r3688 <%= link_to(l(:label_overall_spent_time), { :controller => 'time_entries' }) + ' |' if User.current.allowed_to?(:view_time_entries, nil, :global => true) %>
Eric Davis
Refactor: extract ProjectsController#activity to a new Activities controller....
r3933 <%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }%>
Jean-Philippe Lang
Activity enhancements:...
r1213 </div>
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
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <%= render_project_hierarchy(@projects)%>
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| %>
<%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
<% end %>
Jean-Philippe Lang
Adds new projects atom feed (#1290)....
r1451
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_project_plural)) -%>