diff --git a/app/views/calendars/show.html.erb b/app/views/calendars/show.html.erb
new file mode 100644
index 0000000..bffb7e9
--- /dev/null
+++ b/app/views/calendars/show.html.erb
@@ -0,0 +1,66 @@
+
<%= @query.new_record? ? l(:label_calendar) : @query.name %>
+
+<%= form_tag({:controller => 'calendars', :action => 'show', :project_id => @project},
+ :method => :get, :id => 'query_form') do %>
+<%= hidden_field_tag 'set_filter', '1' %>
+<%= hidden_field_tag 'calendar', '1' %>
+
+
+<% end %>
+
+<%= error_messages_for 'query' %>
+<% if @query.valid? %>
+<%= render :partial => 'common/calendar', :locals => {:calendar => @calendar} %>
+
+<%= call_hook(:view_calendars_show_bottom, :year => @year, :month => @month, :project => @project, :query => @query) %>
+
+
+ <%= l(:text_tip_issue_begin_day) %>
+ <%= l(:text_tip_issue_end_day) %>
+ <%= l(:text_tip_issue_begin_end_day) %>
+
+<% end %>
+
+<% content_for :sidebar do %>
+ <%= render :partial => 'issues/sidebar' %>
+<% end %>
+
+<% html_title(l(:label_calendar)) -%>