diff options
-rw-r--r-- | app/views/calendars/show.html.erb | 6 | ||||
-rw-r--r-- | app/views/gantts/show.html.erb | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/app/views/calendars/show.html.erb b/app/views/calendars/show.html.erb index 4c93771ff..30bd155a8 100644 --- a/app/views/calendars/show.html.erb +++ b/app/views/calendars/show.html.erb @@ -1,10 +1,10 @@ -<h2><%= l(:label_calendar) %></h2> +<h2><%= @query.new_record? ? l(:label_calendar) : h(@query.name) %></h2> <% form_tag(calendar_path, :method => :put, :id => 'query_form') do %> <%= hidden_field_tag('project_id', @project.to_param) if @project%> -<fieldset id="filters" class="collapsible"> +<fieldset id="filters" class="collapsible <%= @query.new_record? ? "" : "collapsed" %>"> <legend onclick="toggleFieldset(this);"><%= l(:label_filter_plural) %></legend> - <div> + <div style="<%= @query.new_record? ? "" : "display: none;" %>"> <%= render :partial => 'queries/filters', :locals => {:query => @query} %> </div> </fieldset> diff --git a/app/views/gantts/show.html.erb b/app/views/gantts/show.html.erb index 820366279..c1e6cb07d 100644 --- a/app/views/gantts/show.html.erb +++ b/app/views/gantts/show.html.erb @@ -1,11 +1,11 @@ <% @gantt.view = self %> -<h2><%= l(:label_gantt) %></h2> +<h2><%= @query.new_record? ? l(:label_gantt) : h(@query.name) %></h2> <% form_tag(gantt_path(:month => params[:month], :year => params[:year], :months => params[:months]), :method => :put, :id => 'query_form') do %> <%= hidden_field_tag('project_id', @project.to_param) if @project%> -<fieldset id="filters" class="collapsible"> +<fieldset id="filters" class="collapsible <%= @query.new_record? ? "" : "collapsed" %>"> <legend onclick="toggleFieldset(this);"><%= l(:label_filter_plural) %></legend> - <div> + <div style="<%= @query.new_record? ? "" : "display: none;" %>"> <%= render :partial => 'queries/filters', :locals => {:query => @query} %> </div> </fieldset> |