index.html.erb
38 lines
| 1.5 KiB
| text/plain
|
TextLexer
|
r3662 | <% content_for :header_tags do %> | ||
<%= auto_discovery_link_tag(:atom, {:action => 'index', :format => 'atom', :key => User.current.rss_key}) %> | ||||
<% end %> | ||||
|
r1213 | <div class="contextual"> | ||
|
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) %> | ||
|
r9346 | <%= link_to(l(:label_issue_view_all), issues_path) + ' |' if User.current.allowed_to?(:view_issues, nil, :global => true) %> | ||
|
r8042 | <%= link_to(l(:label_overall_spent_time), time_entries_path) + ' |' if User.current.allowed_to?(:view_time_entries, nil, :global => true) %> | ||
|
r8802 | <%= link_to l(:label_overall_activity), | ||
{ :controller => 'activities', :action => 'index', | ||||
:id => nil } %> | ||||
|
r1213 | </div> | ||
|
r457 | <h2><%=l(:label_project_plural)%></h2> | ||
|
r2 | |||
|
r10006 | <div id="projects-index"> | ||
|
r2302 | <%= render_project_hierarchy(@projects)%> | ||
|
r10006 | </div> | ||
|
r330 | |||
|
r663 | <% if User.current.logged? %> | ||
|
r1451 | <p style="text-align:right;"> | ||
|
r2302 | <span class="my-project"><%= l(:label_my_projects) %></span> | ||
|
r1451 | </p> | ||
|
r457 | <% end %> | ||
|
r951 | |||
|
r2331 | <% other_formats_links do |f| %> | ||
|
r7111 | <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %> | ||
|
r2331 | <% end %> | ||
|
r1451 | |||
|
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 %> | ||||
|
r1019 | <% html_title(l(:label_project_plural)) -%> | ||