summaryrefslogtreecommitdiffstats
path: root/app/views/my/blocks/_calendar.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/my/blocks/_calendar.html.erb')
-rw-r--r--app/views/my/blocks/_calendar.html.erb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/views/my/blocks/_calendar.html.erb b/app/views/my/blocks/_calendar.html.erb
new file mode 100644
index 000000000..9c6b793bf
--- /dev/null
+++ b/app/views/my/blocks/_calendar.html.erb
@@ -0,0 +1,8 @@
+<h3><%= l(:label_calendar) %></h3>
+
+<% calendar = Redmine::Helpers::Calendar.new(Date.today, current_language, :week)
+ calendar.events = Issue.visible.find :all,
+ :conditions => ["#{Issue.table_name}.project_id in (#{@user.projects.collect{|m| m.id}.join(',')}) AND ((start_date>=? and start_date<=?) or (due_date>=? and due_date<=?))", calendar.startdt, calendar.enddt, calendar.startdt, calendar.enddt],
+ :include => [:project, :tracker, :priority, :assigned_to] unless @user.projects.empty? %>
+
+<%= render :partial => 'common/calendar', :locals => {:calendar => calendar } %>