Merge pull request #23 from finnlabs/adaptations_for_new_wp_form

pull/6827/head
Hagen Schink 11 years ago
commit aefc192947
  1. 2
      app/views/my_projects_overviews/blocks/_members.html.erb
  2. 2
      app/views/my_projects_overviews/blocks/_news_latest.html.erb
  3. 6
      app/views/my_projects_overviews/blocks/_work_package_tracking.html.erb
  4. 2
      app/views/my_projects_overviews/blocks/_work_packages_assigned_to_me.html.erb
  5. 2
      app/views/my_projects_overviews/blocks/_work_packages_reported_by_me.html.erb
  6. 2
      app/views/my_projects_overviews/blocks/_work_packages_responsible_for.html.erb
  7. 2
      app/views/my_projects_overviews/blocks/_work_packages_watched.html.erb

@ -33,7 +33,7 @@ See doc/COPYRIGHT.md for more details.
<%= link_to(l(:'project_page.all'), { :controller => 'my_projects_overviews',
:action => 'show_all_members',
:id => project.id },
:class => "all button" ) %>
:class => "all button_highlight" ) %>
<% end %>
</p>
</div>

@ -28,7 +28,7 @@ See doc/COPYRIGHT.md for more details.
{:controller => 'news',
:action => 'index',
:project_id => project},
:class => 'button' %>
:class => 'button_highlight' %>
</p>
</div>
<% end %>

@ -33,12 +33,12 @@ See doc/COPYRIGHT.md for more details.
<% end %>
</ul>
<p>
<%= link_to l(:label_work_package_view_all), {:controller => '/work_packages', :action => 'index', :project_id => project, :set_filter => 1}, :class => 'button' %>
<%= link_to l(:label_work_package_view_all), {:controller => '/work_packages', :action => 'index', :project_id => project, :set_filter => 1}, :class => 'button_highlight' %>
<% if User.current.allowed_to?(:view_calendar, project, :global => true) %>
<%= link_to(l(:label_calendar), {:controller => '/work_packages/calendars', :action => 'index', :project_id => project}, :class => 'button') %>
<%= link_to(l(:label_calendar), {:controller => '/work_packages/calendars', :action => 'index', :project_id => project}, :class => 'button_highlight') %>
<% end %>
<% if User.current.allowed_to?(:view_gantt, project, :global => true) %>
<%= link_to(l(:label_gantt), {:controller => '/gantts', :action => 'show', :project_id => project}, :class => 'button') %>
<%= link_to(l(:label_gantt), {:controller => '/gantts', :action => 'show', :project_id => project}, :class => 'button_highlight') %>
<% end %>
</p>
</div>

@ -34,7 +34,7 @@ See doc/COPYRIGHT.md for more details.
:set_filter => 1,
:assigned_to_id => 'me',
:sort => 'priority:desc,updated_at:desc'},
:class => 'button' %>
:class => 'button_highlight' %>
</p>
<% end %>

@ -35,7 +35,7 @@ See doc/COPYRIGHT.md for more details.
:status_id => '*',
:author_id => 'me',
:sort => 'updated_at:desc'},
:class => 'button' %>
:class => 'button_highlight' %>
</p>
<% end %>

@ -34,7 +34,7 @@ See doc/COPYRIGHT.md for more details.
:set_filter => 1,
:responsible_id => 'me',
:sort => 'priority:desc,updated_at:desc'},
:class => 'button' %>
:class => 'button_highlight' %>
</p>
<% end %>

@ -30,6 +30,6 @@ See doc/COPYRIGHT.md for more details.
:set_filter => 1,
:watcher_id => 'me',
:sort => 'updated_on:desc'},
:class => 'button' %>
:class => 'button_highlight' %>
</p>
<% end %>

Loading…
Cancel
Save