To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / issues / _sidebar.html.erb @ 1531:ae8145b28b2b

History | View | Annotate | Download (772 Bytes)

1
<h3><%= l(:label_issue_plural) %></h3>
2

    
3
<ul>
4
<li><%= link_to l(:label_issue_view_all), _project_issues_path(@project, :set_filter => 1) %></li>
5
<% if @project %>
6
<li><%= link_to l(:field_summary), project_issues_report_path(@project) %></li>
7
<% end %>
8

    
9
<% if User.current.allowed_to?(:view_calendar, @project, :global => true) %>
10
<li><%= link_to l(:label_calendar), _project_calendar_path(@project) %></li>
11
<% end %>
12
<% if User.current.allowed_to?(:view_gantt, @project, :global => true) %>
13
<li><%= link_to l(:label_gantt), _project_gantt_path(@project) %></li>
14
<% end %>
15
</ul>
16

    
17
<%= call_hook(:view_issues_sidebar_issues_bottom) %>
18
<%= call_hook(:view_issues_sidebar_planning_bottom) %>
19

    
20
<%= render_sidebar_queries %>
21
<%= call_hook(:view_issues_sidebar_queries_bottom) %>