|
@@ -2,6 +2,8 @@
|
|
|
link rel="stylesheet" href=url("/assets/bootstrap/3.3.5/bootstrap.min.css")
|
|
|
link rel="stylesheet" href=url("/css/print.css")
|
|
|
link href=url("/css/print_a4_landscape.css") rel="stylesheet" media="all"
|
|
|
+-alle_faecher = Set.new
|
|
|
+-gesamtzahl_slices= (schueler.count/4) + (1 if (schueler.count.%(4)>0))
|
|
|
-schueler.select{|s| s.abi_abschluss }.each_slice(4).with_index do |(*schueler_slice), slice_i|
|
|
|
.page
|
|
|
.subpage.font-size-8
|
|
@@ -9,14 +11,15 @@ link href=url("/css/print_a4_landscape.css") rel="stylesheet" media="all"
|
|
|
.col-xs-12
|
|
|
h5
|
|
|
|Notenkonferenzliste 1. APA BK Abitur #{schueler.first.klasse},
|
|
|
- small< Stand: #{(Time.now).strftime("%d.%m.%Y – %H:%M")}, Seite #{slice_i+1}/#{(schueler.count/4) + 1 if (schueler.count.%(4)>0)}
|
|
|
+ small< Stand: #{(Time.now).strftime("%d.%m.%Y – %H:%M")}, Seite #{slice_i+1}/#{gesamtzahl_slices}
|
|
|
.voffset-1
|
|
|
-schueler_slice.each_with_index do |s,i|
|
|
|
-array=[]
|
|
|
- -array << ["<br>✎<br>→", "12.1", "12.2", "13.1", "13.2"]
|
|
|
+ -array << ["", "12.1", "12.2", "13.1", "13.2"]
|
|
|
-s.abi_abschluss_leistungen.sort_by{|f|f.f_sortierung}.each do |n|
|
|
|
-inner_array = []
|
|
|
-inner_array << n.fach_krz
|
|
|
+ -alle_faecher << n.fach_krz
|
|
|
-inner_array << n.p12_1 || ""
|
|
|
-inner_array << n.p12_2 || ""
|
|
|
-inner_array << n.p13_1 || ""
|
|
@@ -26,11 +29,11 @@ link href=url("/css/print_a4_landscape.css") rel="stylesheet" media="all"
|
|
|
-faecher = array.shift
|
|
|
.row
|
|
|
.col-xs-8
|
|
|
- b #{i+1+(3*slice_i)}. #{s.name}, #{s.vorname}
|
|
|
+ b #{i+1+(4*slice_i)}. #{s.name}, #{s.vorname}
|
|
|
table.table.table-condensed.table-bordered.fixed.table-eng
|
|
|
tr
|
|
|
-faecher.each do |f|
|
|
|
- th.text-center height="60px" ==f
|
|
|
+ th.text-center ==f
|
|
|
-array.each do |a|
|
|
|
tr
|
|
|
-a.each do |l|
|
|
@@ -43,4 +46,12 @@ link href=url("/css/print_a4_landscape.css") rel="stylesheet" media="all"
|
|
|
hr
|
|
|
.voffset-2
|
|
|
="Zugelassen: #{s.abi_abschluss.zulassung? ? "Ja":"Nein"}"
|
|
|
+ -if slice_i+1 ==gesamtzahl_slices
|
|
|
+ .row
|
|
|
+ .col-xs-12
|
|
|
+ b Bitte unterschreiben. Auf Richtigkeit geprüft:
|
|
|
+ table.table.table-condensed.table-bordered.fixed.table-eng
|
|
|
+ tr
|
|
|
+ -alle_faecher.each do |f|
|
|
|
+ th.text-center height="60px" ==f
|
|
|
|