@@ -38,6 +38,7 var menu_contenu=' \ | |||
|
38 | 38 | <% unless @project.nil? || @project.id.nil? %> \ |
|
39 | 39 | <div id="menuProject" class="menu" onmouseover="menuMouseover(event)"> \ |
|
40 | 40 | <%= link_to l(:label_calendar), {:controller => 'projects', :action => 'calendar', :id => @project }, :class => "menuItem" %> \ |
|
41 | <%= link_to l(:label_gantt), {:controller => 'projects', :action => 'gantt', :id => @project }, :class => "menuItem" %> \ | |
|
41 | 42 | <%= link_to l(:label_issue_plural), {:controller => 'projects', :action => 'list_issues', :id => @project }, :class => "menuItem" %> \ |
|
42 | 43 | <%= link_to l(:label_report_plural), {:controller => 'reports', :action => 'issue_report', :id => @project }, :class => "menuItem" %> \ |
|
43 | 44 | <%= link_to l(:label_activity), {:controller => 'projects', :action => 'activity', :id => @project }, :class => "menuItem" %> \ |
@@ -103,6 +104,7 var menu_contenu=' \ | |||
|
103 | 104 | <ul class="menublock"> |
|
104 | 105 | <li><%= link_to l(:label_overview), :controller => 'projects', :action => 'show', :id => @project %></li> |
|
105 | 106 | <li><%= link_to l(:label_calendar), :controller => 'projects', :action => 'calendar', :id => @project %></li> |
|
107 | <li><%= link_to l(:label_gantt), :controller => 'projects', :action => 'gantt', :id => @project %></li> | |
|
106 | 108 | <li><%= link_to l(:label_issue_plural), :controller => 'projects', :action => 'list_issues', :id => @project %></li> |
|
107 | 109 | <li><%= link_to l(:label_report_plural), :controller => 'reports', :action => 'issue_report', :id => @project %></li> |
|
108 | 110 | <li><%= link_to l(:label_activity), :controller => 'projects', :action => 'activity', :id => @project %></li> |
@@ -2,16 +2,24 | |||
|
2 | 2 | |
|
3 | 3 | <table width="100%"> |
|
4 | 4 | <tr> |
|
5 | <td align="left"> | |
|
6 | <%= start_form_tag :action => 'calendar', :id => @project %> | |
|
7 | <%= select_month(@month, :prefix => "month", :discard_type => true) %> | |
|
8 | <%= select_year(@year, :prefix => "year", :discard_type => true) %> | |
|
9 | <%= submit_tag l(:button_submit), :class => "button-small" %> | |
|
10 | <%= end_form_tag %> | |
|
5 | <td align="left" width="150"> | |
|
6 | <%= link_to_remote ('« ' + (@month==1 ? "#{month_name(12)} #{@year-1}" : "#{month_name(@month-1)}")), | |
|
7 | {:update => "content", :url => { :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1) }}, | |
|
8 | {:href => url_for(:action => 'calendar', :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1))} | |
|
9 | %> | |
|
11 | 10 | </td> |
|
12 |
<td align="r |
|
|
13 | <%= image_tag 'gantt' %> | |
|
14 | <%= link_to l(:label_gantt_chart), :action => 'gantt', :id => @project %> | |
|
11 | <td align="center"> | |
|
12 | <%= start_form_tag :action => 'calendar', :id => @project %> | |
|
13 | <%= select_month(@month, :prefix => "month", :discard_type => true) %> | |
|
14 | <%= select_year(@year, :prefix => "year", :discard_type => true) %> | |
|
15 | <%= submit_tag l(:button_submit), :class => "button-small" %> | |
|
16 | <%= end_form_tag %> | |
|
17 | </td> | |
|
18 | <td align="right" width="150"> | |
|
19 | <%= link_to_remote ((@month==12 ? "#{month_name(1)} #{@year+1}" : "#{month_name(@month+1)}") + ' »'), | |
|
20 | {:update => "content", :url => { :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1) }}, | |
|
21 | {:href => url_for(:action => 'calendar', :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1))} | |
|
22 | %> | |
|
15 | 23 | </td> |
|
16 | 24 | </tr> |
|
17 | 25 | </table> |
@@ -52,23 +60,6 end %> | |||
|
52 | 60 | </tr> |
|
53 | 61 | </table> |
|
54 | 62 | |
|
55 | <table width="100%"> | |
|
56 | <tr> | |
|
57 | <td align="left"> | |
|
58 | <%= link_to_remote ('« ' + (@month==1 ? "#{month_name(12)} #{@year-1}" : "#{month_name(@month-1)}")), | |
|
59 | {:update => "content", :url => { :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1) }}, | |
|
60 | {:href => url_for(:action => 'calendar', :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1))} | |
|
61 | %> | |
|
62 | </td> | |
|
63 | <td align="right"> | |
|
64 | <%= link_to_remote ((@month==12 ? "#{month_name(1)} #{@year+1}" : "#{month_name(@month+1)}") + ' »'), | |
|
65 | {:update => "content", :url => { :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1) }}, | |
|
66 | {:href => url_for(:action => 'calendar', :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1))} | |
|
67 | %> | |
|
68 | | |
|
69 | </td> | |
|
70 | </tr> | |
|
71 | </table> | |
|
72 | 63 | <br /> |
|
73 | 64 | <%= image_tag 'arrow_from' %> <%= l(:text_tip_task_begin_day) %><br /> |
|
74 | 65 | <%= image_tag 'arrow_to' %> <%= l(:text_tip_task_end_day) %><br /> |
@@ -1,4 +1,4 | |||
|
1 |
<h2><%= l(:label_gantt |
|
|
1 | <h2><%= l(:label_gantt) %></h2> | |
|
2 | 2 | <div class="topright"> |
|
3 | 3 | <small> |
|
4 | 4 | <%= l(:label_export_to) %> <%= link_to 'PDF', :zoom => @zoom, :year => @year_from, :month => @month_from, :months => @months, :output => 'pdf' %> |
@@ -254,7 +254,7 label_add_note: Eine Anmerkung addieren | |||
|
254 | 254 | label_per_page: Pro Seite |
|
255 | 255 | label_calendar: Kalender |
|
256 | 256 | label_months_from: Monate von |
|
257 |
label_gantt |
|
|
257 | label_gantt: Gantt | |
|
258 | 258 | label_internal: Intern |
|
259 | 259 | label_last_changes: %d änderungen des Letzten |
|
260 | 260 | label_change_view_all: Alle änderungen ansehen |
@@ -254,7 +254,7 label_add_note: Add a note | |||
|
254 | 254 | label_per_page: Per page |
|
255 | 255 | label_calendar: Calendar |
|
256 | 256 | label_months_from: months from |
|
257 |
label_gantt |
|
|
257 | label_gantt: Gantt | |
|
258 | 258 | label_internal: Internal |
|
259 | 259 | label_last_changes: last %d changes |
|
260 | 260 | label_change_view_all: View all changes |
@@ -254,7 +254,7 label_add_note: Agregar una nota | |||
|
254 | 254 | label_per_page: Por la página |
|
255 | 255 | label_calendar: Calendario |
|
256 | 256 | label_months_from: meses de |
|
257 |
label_gantt |
|
|
257 | label_gantt: Gantt | |
|
258 | 258 | label_internal: Interno |
|
259 | 259 | label_last_changes: %d cambios del último |
|
260 | 260 | label_change_view_all: Ver todos los cambios |
@@ -255,7 +255,7 label_add_note: Ajouter une note | |||
|
255 | 255 | label_per_page: Par page |
|
256 | 256 | label_calendar: Calendrier |
|
257 | 257 | label_months_from: mois depuis |
|
258 |
label_gantt |
|
|
258 | label_gantt: Gantt | |
|
259 | 259 | label_internal: Interne |
|
260 | 260 | label_last_changes: %d derniers changements |
|
261 | 261 | label_change_view_all: Voir tous les changements |
General Comments 0
You need to be logged in to leave comments.
Login now