2012-02-15 18:53:58 +00:00
|
|
|
-render :partial => 'projects/submenu'
|
|
|
|
-render :partial => 'issues/sidebar'
|
|
|
|
|
2012-02-20 16:54:45 +00:00
|
|
|
#closed-switcher.blue-switcher
|
|
|
|
.open
|
|
|
|
="#{t('layout.issues.statuses.open')} (#{@issues.where(:status => 'open').count})"
|
|
|
|
#closed-tasks.closed
|
|
|
|
="#{t('layout.issues.statuses.closed')} (#{@issues.where(:status => 'closed').count})"
|
|
|
|
#blue-switch-select.selected{:style => "margin-left: #{@status == 'open' ? '0' : '130'}px;"}
|
|
|
|
.both
|
|
|
|
.both
|
|
|
|
#table1
|
|
|
|
%table#myTable.tablesorter.tracker{:cellpadding => "0", :cellspacing => "0"}
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th.th1{:colspan => "2"}
|
|
|
|
=t('layout.issues.number')
|
|
|
|
%th{:colspan => "2"}
|
|
|
|
=t('layout.issues.description')
|
|
|
|
%tbody
|
|
|
|
- @issues.where(:status => @status).each do |issue|
|
|
|
|
= render :partial => 'issues/list', :locals => {:issue => issue}
|