-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold.html
6014 lines (5334 loc) · 258 KB
/
old.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- PowerTeacher Student Profile Page By Luke Walker and Frank Dow -->
<html>
<head>
<title>Foundational Learnings</title>
~[wc:commonscripts]
<link href="/images/css/screen.css" rel="stylesheet" media="screen">
<link href="/images/css/print.css" rel="stylesheet" media="print">
<link href="/images/css/fls.css" rel="stylesheet">
<script>
function formHandler(form) {
var URL = document.navigation.page.options[document.navigation.page.selectedIndex].value;
window.location.href = URL;
console.log(window.location.href);
}
</script>
</head>
<body>
~[wc:teachers_header_fr_css]
<form name="navigation"><span class="account-photo">~[studenttitlephoto]</span>
<h1>Foundational Learnings<span class="nav-teacher"><select name="page" size=1 onChange="javascript:formHandler()">
<option value="">Foundational Learnings
<option value="">--------------------~[x:teacherpages]
</select></span>~[studentalert]</h1>
<p>~(studentname) ~(grade_level) ~(student_number) ~(track) ~(studschoolabbr) ~[enrollmentstatus]</p>
</form>
~[if#cslfCheck.~(curschoolid)>500]
This page is not used in CSLF schools.
[else#cslfCheck]
<input type="hidden" id="grade" value="~(grade_level)">
<div class="tabs">
<ul>
<li><a href="fls/flk.html" class="tab">K</a></li>
<li><a href="#tabs-1" class="selected">1</a></li>
<li><a href="#tabs-2" class="tab">2</a></li>
<li><a href="#tabs-3" class="tab">3</a></li>
<li><a href="#tabs-4" class="tab">4</a></li>
<li><a href="#tabs-5" class="tab">5</a></li>
<li><a href="#tabs-6" class="tab">6</a></li>
<li><a href="#tabs-7" class="tab">7</a></li>
<li><a href="#tabs-8" class="tab">8</a></li>
<li><a href="#tabs-9" class="tab">9</a></li>
</ul>
<div id="tabs-0" class="box-round">
<form class="fl_form" action="/teachers/studentpages/foundational_learnings.html?frn=~(studentfrn)&changesSaved=true" method="POST">
<h2 class="toggle expanded">Mathematics</h2>
<div>
<table class="linkDescList">
<colgroup>
<col style="width:20%">
<col>
</colgroup>
<tr>
<td class="fl-label">K-1.1
<span class="tooltiptext">count in a variety of ways
</span>
</td>
<td>
~[if.~([Students.U_PEI_FL]Math_K_11)$"Y"]
~([Students.U_PEI_FL]Math_K_11)
[else]
<select name="[Students.U_PEI_FL]Math_K_11" id="selectMath_K_11">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_K_11))]</select>
[/if]
</td>
</tr>
<tr>
<td class="fl-label">K-1.2
<span class="tooltiptext">explore a variety of physical representations of numbers 1 to 10
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_K_12)$"Y"]
~([Students.U_PEI_FL]Math_K_12)
[else#Y]
<select name="[Students.U_PEI_FL]Math_K_12" id="selectMath_K_12">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_K_12))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-1.3
<span class="tooltiptext">count to determine the number in a group (0 to 10)
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_K_13)$"Y"]
~([Students.U_PEI_FL]Math_K_13)
[else#Y]
<select name="[Students.U_PEI_FL]Math_K_13" id="selectMath_K_13">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_K_13))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-1.4
<span class="tooltiptext">create sets of a given number (0 to 10)
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_K_14)$"Y"]
~([Students.U_PEI_FL]Math_K_14)
[else#Y]
<select name="[Students.U_PEI_FL]Math_K_14" id="selectMath_K_14">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_K_14))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-1.5
<span class="tooltiptext">show a given number as two parts concretely and name the two parts (2 to 10)
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_K_15)$"Y"]
~([Students.U_PEI_FL]Math_K_15)
[else#Y]
<select name="[Students.U_PEI_FL]Math_K_15" id="selectMath_K_15">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_K_15))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-1.6
<span class="tooltiptext">determine which group has more, which group has less, or which are equivalent
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_K_16)$"Y"]
~([Students.U_PEI_FL]Math_K_16)
[else#Y]
<select name="[Students.U_PEI_FL]Math_K_16" id="selectMath_K_16">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_K_16))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-1.7
<span class="tooltiptext">use symbols to represent numbers in a variety of meaningful contexts
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_K_17)$"Y"]
~([Students.U_PEI_FL]Math_K_17)
[else#Y]
<select name="[Students.U_PEI_FL]Math_K_17" id="selectMath_K_17">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_K_17))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-2.1
<span class="tooltiptext">Demonstrate an understanding of repeating patterns (two or three elements) by identifying, describing, copying, extending, and creating patterns
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_K_21)$"Y"]
~([Students.U_PEI_FL]Math_K_21)
[else#Y]
<select name="[Students.U_PEI_FL]Math_K_21" id="selectMath_K_21">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_K_21))]</select>
[/if#Y]
</td>
</tr>
~[if#chkGrade.~([Students]grade_level)=0]
<tr>
<td class="fl-label">K Comment</td>
<td>
<textarea name="[Students.U_PEI_FL]MATH_K_COMMENT" id="textareaMath_K_Comment" rows="5" cols="100" value=~([Students.U_PEI_FL]MATH_K_COMMENT)></textarea>
</td>
</tr>
<tr>
<td class="fl-label">K Teacher:</td>
<td>
~[if#chkTeacher.~([Students.U_PEI_FL]MATH_K_TEACHER)=]
<input name="[Students.U_PEI_FL]MATH_K_TEACHER" class="fl_teacher">
[else#chkTeacher]
<input name="[Students.U_PEI_FL]MATH_K_TEACHER" class="fl_teacher" value=~([Students.U_PEI_FL]MATH_K_TEACHER)>
[/if#chkTeacher]
</td>
</tr>
<tr>
<td class="fl-label">K School:</td>
<td>
~[if#chkSchool.~([Students.U_PEI_FL]MATH_K_SCHOOL)=]
<input name="[Students.U_PEI_FL]MATH_K_SCHOOL" class="fl_school">
[else#chkSchool]
<input name="[Students.U_PEI_FL]MATH_K_SCHOOL" class="fl_school" value=~([Students.U_PEI_FL]MATH_K_SCHOOL)>
[/if#chkSchool]
</td>
</tr>
<tr>
<td class="fl-label">K Year:</td>
<td>
~[if#chkYear.~([Students.U_PEI_FL]MATH_K_YEAR)=]
<input name="[Students.U_PEI_FL]MATH_K_YEAR" class="fl_year">
[else#chkYear]
<input name="[Students.U_PEI_FL]MATH_K_YEAR" class="fl_year" value=~([Students.U_PEI_FL]MATH_K_YEAR)>
[/if#chkYear]
</td>2
</tr>
[else#chkGrade]
<tr>
<td class="fl-label">K Comment</td>
<td>
~([Students.U_PEI_FL]MATH_K_COMMENT)
</td>
</tr>
<tr>
<td class="fl-label">K Teacher:</td>
<td>
~([Students.U_PEI_FL]MATH_K_TEACHER)
</td>
</tr>
<tr>
<td class="fl-label">K School:</td>
<td>
~([Students.U_PEI_FL]MATH_K_SCHOOL)
</td>
</tr>
<tr>
<td class="fl-label">K Year:</td>
<td>
~([Students.U_PEI_FL]MATH_K_YEAR)
</td>
</tr>
[/if#chkGrade]
</table>
</div>
<h2 class="toggle collapsed">ELA</h2>
<div>
<table class="linkDescList">
<colgroup>
<col style="width:20%">
<col>
</colgroup>
<tr>
<td class="fl-label">
K-SL1.1
<span class="tooltiptext">Express feelings and opinions and describe personal experiences and interests</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_K_SL11)$"Y"]
~([Students.U_PEI_FL]ELA_K_SL11)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_K_SL11" id="selectELA_K_SL11">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_K_SL11))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-SL1.4
<span class="tooltiptext">Follow and give directions in different contexts</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_K_SL14)$"Y"]
~([Students.U_PEI_FL]ELA_K_SL14)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_K_SL14" id="selectELA_K_SL14">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_K_SL14))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-SL2.1
<span class="tooltiptext">Identify how many words are in a spoken sentence</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_K_SL21)$"Y"]
~([Students.U_PEI_FL]ELA_K_SL21)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_K_SL21" id="selectELA_K_SL21">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_K_SL21))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-SL2.2
<span class="tooltiptext">Begin to segment and blend words into syllables</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_K_SL22)$"Y"]
~([Students.U_PEI_FL]ELA_K_SL22)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_K_SL22" id="selectELA_K_SL22">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_K_SL22))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-SL2.3
<span class="tooltiptext">Recognize and produce rhyming words in oral language</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_K_SL23)$"Y"]
~([Students.U_PEI_FL]ELA_K_SL23)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_K_SL23" id="selectELA_K_SL23">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_K_SL23))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-SL2.4
<span class="tooltiptext">Recognize beginning and final phonemes (sounds) in oral language</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_K_SL24)$"Y"]
~([Students.U_PEI_FL]ELA_K_SL24)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_K_SL24" id="selectELA_K_SL24">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_K_SL24))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-RS1
<span class="tooltiptext">Begin to monitor reading by using one-to-one matching of voice to print; notice when meaning or language does not fit</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_K_RS1)$"Y"]
~([Students.U_PEI_FL]ELA_K_RS1)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_K_RS1" id="selectELA_K_RS1">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_K_RS1))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-WS5
<span class="tooltiptext">Use sound symbol knowledge to write unknown words</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_K_WS5)$"Y"]
~([Students.U_PEI_FL]ELA_K_WS5)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_K_WS5" id="selectELA_K_WS5">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_K_WS5))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-WTI2
<span class="tooltiptext">Understand that written words record ideas (usually personal experiences or feelings) and remain constant from one reading to another</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_K_WTI2)$"Y"]
~([Students.U_PEI_FL]ELA_K_WTI2)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_K_WTI2" id="selectELA_K_WTI2">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_K_WTI2))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-WTC4
<span class="tooltiptext">Demonstrate left-toright and top-to-bottom directionality</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_K_WTC4)$"Y"]
~([Students.U_PEI_FL]ELA_K_WTC4)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_K_WTC4" id="selectELA_K_WTC4">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_K_WTC4))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-II3
<span class="tooltiptext">Use some language from texts in personal context (e.g., join in chants, rhymes; use “storybook” words or phrases)</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_K_II3)$"Y"]
~([Students.U_PEI_FL]ELA_K_II3)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_K_II3" id="selectELA_K_II3">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_K_II3))]</select>
[/if#Y]
</td>
</tr>
~[if#chkGrade.~([Students]grade_level)=0]
<tr>
<td class="fl-label">K Comment</td>
<td>
<textarea name="[Students.U_PEI_FL]ELA_K_COMMENT" id="textareaELA_K_Comment" rows="5" cols="100" value=~([Students.U_PEI_FL]ELA_K_COMMENT)></textarea>
</td>
</tr>
<tr>
<td class="fl-label">K Teacher:</td>
<td>
~[if#chkTeacher.~([Students.U_PEI_FL]ELA_K_TEACHER)=]
<input name="[Students.U_PEI_FL]ELA_K_TEACHER" class="fl_teacher">
[else#chkTeacher]
<input name="[Students.U_PEI_FL]ELA_K_TEACHER" class="fl_teacher" value=~([Students.U_PEI_FL]ELA_K_TEACHER)>
[/if#chkTeacher]
</td>
</tr>
<tr>
<td class="fl-label">K School:</td>
<td>
~[if#chkSchool.~([Students.U_PEI_FL]ELA_K_SCHOOL)=]
<input name="[Students.U_PEI_FL]ELA_K_SCHOOL" class="fl_school">
[else#chkSchool]
<input name="[Students.U_PEI_FL]ELA_K_SCHOOL" class="fl_school" value=~([Students.U_PEI_FL]ELA_K_SCHOOL)>
[/if#chkSchool]
</td>
</tr>
<tr>
<td class="fl-label">K Year:</td>
<td>
~[if#chkYear.~([Students.U_PEI_FL]ELA_K_YEAR)=]
<input name="[Students.U_PEI_FL]ELA_K_YEAR" class="fl_year">
[else#chkYear]
<input name="[Students.U_PEI_FL]ELA_K_YEAR" class="fl_year" value=~([Students.U_PEI_FL]ELA_K_YEAR)>
[/if#chkYear]
</td>
</tr>
[else#chkGrade]
<tr>
<td class="fl-label">K Comment</td>
<td>
~([Students.U_PEI_FL]ELA_K_COMMENT)
</td>
</tr>
<tr>
<td class="fl-label">K Teacher:</td>
<td>
~([Students.U_PEI_FL]ELA_K_TEACHER)
</td>
</tr>
<tr>
<td class="fl-label">K School:</td>
<td>
~([Students.U_PEI_FL]ELA_K_SCHOOL)
</td>
</tr>
<tr>
<td class="fl-label">K Year:</td>
<td>
~([Students.U_PEI_FL]ELA_K_YEAR)
</td>
</tr>
[/if#chkGrade]
</table>
</div>
<h2 class="toggle collapsed">FLA</h2>
<div>
<table class="linkDescList">
<colgroup>
<col style="width:20%">
<col>
</colgroup>
<tr>
<td class="fl-label">K-2.1<span class="tooltiptext">Démontrer sa compréhension littérale du message contenu dans différents types de textes oraux simples</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_21)$"Y"]
~([Students.U_PEI_FL]FLA_K_21)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_21" id="selectFLA_K_21">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_21))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-3.1<span class="tooltiptext">S’exprimer en employant des phrases simples</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_31)$"Y"]
~([Students.U_PEI_FL]FLA_K_31)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_31" id="selectFLA_K_31">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_31))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-4.1<span class="tooltiptext">Distinguer les mots, les syllabes, les phonèmes et les rimes</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_41)$"Y"]
~([Students.U_PEI_FL]FLA_K_41)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_41" id="selectFLA_K_41">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_41))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-5.1<span class="tooltiptext">Démontrer une compréhension des concepts de l’écrit
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_51)$"Y"]
~([Students.U_PEI_FL]FLA_K_51)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_51" id="selectFLA_K_51">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_51))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-6.2<span class="tooltiptext">Appliquer des actions stratégiques pour gérer sa lecture
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_62)$"Y"]
~([Students.U_PEI_FL]FLA_K_62)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_62" id="selectFLA_K_62">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_62))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-7.1<span class="tooltiptext">Démontrer sa compréhension littérale du message contenu dans différents genres de textes simples
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_71)$"Y"]
~([Students.U_PEI_FL]FLA_K_71)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_71" id="selectFLA_K_71">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_71))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-9.1<span class="tooltiptext">Développer quelques compétences simples liées aux traits d’écriture pour créer de courts textes</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_91)$"Y"]
~([Students.U_PEI_FL]FLA_K_91)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_91" id="selectFLA_K_91">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_91))]</select>
[/if#Y]
</tr>
~[if#chkGrade.~([Students]grade_level)=0]
<tr>
<td class="fl-label">K Comment</td>
<td>
<textarea name="[Students.U_PEI_FL]FLA_K_COMMENT" id="textareaFLA_K_Comment" rows="5" cols="100" value=~([Students.U_PEI_FL]FLA_K_COMMENT)></textarea>
</td>
</tr>
<tr>
<td class="fl-label">K Teacher:</td>
<td>
~[if#chkTeacher.~([Students.U_PEI_FL]FLA_K_TEACHER)=]
<input name="[Students.U_PEI_FL]FLA_K_TEACHER" class="fl_teacher">
[else#chkTeacher]
<input name="[Students.U_PEI_FL]FLA_K_TEACHER" class="fl_teacher" value=~([Students.U_PEI_FL]FLA_K_TEACHER)>
[/if#chkTeacher]
</td>
</tr>
<tr>
<td class="fl-label">K School:</td>
<td>
~[if#chkSchool.~([Students.U_PEI_FL]FLA_K_SCHOOL)=]
<input name="[Students.U_PEI_FL]FLA_K_SCHOOL" class="fl_school">
[else#chkSchool]
<input name="[Students.U_PEI_FL]FLA_K_SCHOOL" class="fl_school" value=~([Students.U_PEI_FL]FLA_K_SCHOOL)>
[/if#chkSchool]
</td>
</tr>
<tr>
<td class="fl-label">K Year:</td>
<td>
~[if#chkYear.~([Students.U_PEI_FL]FLA_K_YEAR)=]
<input name="[Students.U_PEI_FL]FLA_K_YEAR" class="fl_year">
[else#chkYear]
<input name="[Students.U_PEI_FL]FLA_K_YEAR" class="fl_year" value=~([Students.U_PEI_FL]FLA_K_YEAR)>
[/if#chkYear]
</td>
</tr>
[else#chkGrade]
<tr>
<td class="fl-label">K Comment</td>
<td>
~([Students.U_PEI_FL]FLA_K_COMMENT)
</td>
</tr>
<tr>
<td class="fl-label">K Teacher:</td>
<td>
~([Students.U_PEI_FL]FLA_K_TEACHER)
</td>
</tr>
<tr>
<td class="fl-label">K School:</td>
<td>
~([Students.U_PEI_FL]FLA_K_SCHOOL)
</td>
</tr>
<tr>
<td class="fl-label">K Year:</td>
<td>
~([Students.U_PEI_FL]FLA_K_YEAR)
</td>
</tr>
[/if#chkGrade]
<tr>
<td class="fl-label">K-9.2<span class="tooltiptext"></span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_92)$"Y"]
~([Students.U_PEI_FL]FLA_K_92)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_92" id="selectFLA_K_92">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_92))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-7.2<span class="tooltiptext"></span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_72)$"Y"]
~([Students.U_PEI_FL]FLA_K_72)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_72" id="selectFLA_K_72">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_72))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-4.3<span class="tooltiptext"></span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_43)$"Y"]
~([Students.U_PEI_FL]FLA_K_43)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_43" id="selectFLA_K_43">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_43))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-4.8<span class="tooltiptext"></span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_48)$"Y"]
~([Students.U_PEI_FL]FLA_K_48)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_48" id="selectFLA_K_48">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_48))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-3.10<span class="tooltiptext"></span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_310)$"Y"]
~([Students.U_PEI_FL]FLA_K_310)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_310" id="selectFLA_K_310">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_310))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-3.3<span class="tooltiptext"></span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_33)$"Y"]
~([Students.U_PEI_FL]FLA_K_33)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_33" id="selectFLA_K_33">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_33))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-1.5<span class="tooltiptext"></span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_15)$"Y"]
~([Students.U_PEI_FL]FLA_K_15)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_15" id="selectFLA_K_15">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_15))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">K-2.2<span class="tooltiptext"></span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_22)$"Y"]
~([Students.U_PEI_FL]FLA_K_22)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_22" id="selectFLA_K_22">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_22))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-2.3<span class="tooltiptext"></span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_23)$"Y"]
~([Students.U_PEI_FL]FLA_K_23)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_23" id="selectFLA_K_23">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_23))]</select>
[/if#Y]
</tr>
<tr>
<td class="fl-label">K-2.4<span class="tooltiptext"></span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]FLA_K_24)$"Y"]
~([Students.U_PEI_FL]FLA_K_24)
[else#Y]
<select name="[Students.U_PEI_FL]FLA_K_24" id="selectFLA_K_24">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]FLA_K_24))]</select>
[/if#Y]
</tr>
</table>
</div>
<div class="button-row"><input type="hidden" name="frn" value="~(studentfrn)">
<input type="hidden" name="ac" value="webasmt">~[submitbutton]
</div>
</form>
</div>
<div id="tabs-1" class="box-round">
<form class="fl_form" action="/teachers/studentpages/foundational_learnings.html?frn=~(studentfrn)&changesSaved=true" method="POST">
<h2 class="toggle expanded">Mathematics</h2>
<div>
<table class="linkDescList">
<colgroup>
<col style="width:20%">
<col>
</colgroup>
<tr>
<td class="fl-label">1-N1
<span class="tooltiptext">Say the number sequence, 0 to 100, by: •1s forward and backward between any two given numbers; • 2s to 20, forward starting at 0; and • 5s and 10s to 100, forward starting at 0.
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_1_N1)$"Y"]
~([Students.U_PEI_FL]Math_1_N1)
[else#Y]
<select name="[Students.U_PEI_FL]Math_1_N1" id="selectMath_1_N1">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_1_N1))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">1-N2
<span class="tooltiptext">Recognize, at a glance, and name familiar arrangements of 1 to 10 objects or dots.
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_1_N2)$"Y"]
~([Students.U_PEI_FL]Math_1_N2)
[else#Y]
<select name="[Students.U_PEI_FL]Math_1_N2" id="selectMath_1_N2">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_1_N2))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">1-N3
<span class="tooltiptext">Demonstrate an understanding of counting by: • indicating that the last number said identifies “how many”; •showing that any set has only one count; • using the counting on strategy; and •using parts or equal
groups to count sets.
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_1_N3)$"Y"]
~([Students.U_PEI_FL]Math_1_N3)
[else#Y]
<select name="[Students.U_PEI_FL]Math_1_N3" id="selectMath_1_N3">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_1_N3))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">1-N4
<span class="tooltiptext">Represent and describe numbers to 20 concretely, pictorially and symbolically.
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_1_N4)$"Y"]
~([Students.U_PEI_FL]Math_1_N4)
[else#Y]
<select name="[Students.U_PEI_FL]Math_1_N4" id="selectMath_1_N4">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_1_N4))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">1-N5
<span class="tooltiptext">Compare sets containing up to 20 elements to solve problems using: •referents; and • one-to-one correspondence.
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_1_N5)$"Y"]
~([Students.U_PEI_FL]Math_1_N5)
[else#Y]
<select name="[Students.U_PEI_FL]Math_1_N5" id="selectMath_1_N5">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_1_N5))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">1-N9
<span class="tooltiptext">Demonstrate an understanding of addition of numbers with answers to 20 and their corresponding subtraction facts, concretely, pictorially and symbolically by: •using familiar and mathematical language to
describe additive and subtractive actions from their experience; •creating and solving problems in context that involve addition and subtraction; and • modelling addition and subtraction using a variety of concrete and visual
representations, and recording the process symbolically.
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_1_N9)$"Y"]
~([Students.U_PEI_FL]Math_1_N9)
[else#Y]
<select name="[Students.U_PEI_FL]Math_1_N9" id="selectMath_1_N9">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_1_N9))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">1-N10
<span class="tooltiptext">Describe and use mental mathematics strategies (memorization not intended), such as: •counting on and counting back; •making 10; •doubles; and •using addition to subtract to determine the basic addition facts
to 18 and related subtraction facts.
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_1_N10)$"Y"]
~([Students.U_PEI_FL]Math_1_N10)
[else#Y]
<select name="[Students.U_PEI_FL]Math_1_N10" id="selectMath_1_N10">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_1_N10))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">1-PR3-RR3
<span class="tooltiptext">Describe equality as a balance and inequality as an imbalance, concretely and pictorially (0 to 20).
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_1_PR3_RR3)$"Y"]
~([Students.U_PEI_FL]Math_1_PR3_RR3)
[else#Y]
<select name="[Students.U_PEI_FL]Math_1_PR3_RR3" id="selectMath_1_PR3_RR3">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_1_PR3_RR3))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">1-SS1-FE1
<span class="tooltiptext">Demonstrate an understanding of measurement as a process of comparing by: • identifying attributes that can be compared • ordering objects • making statements of comparison • filling, covering or matching.
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]Math_1_SS1_FE1)$"Y"]
~([Students.U_PEI_FL]Math_1_SS1_FE1)
[else#Y]
<select name="[Students.U_PEI_FL]Math_1_SS1_FE1" id="selectMath_1_SS1_FE1">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]Math_1_SS1_FE1))]</select>
[/if#Y]
</td>
</tr>
~[if#chkGrade.~([Students]grade_level)=1]
<tr>
<td class="fl-label">Gr 1 Comment</td>
<td>
<textarea name="[Students.U_PEI_FL]MATH_1_COMMENT" id="textareaMath_1_Comment" rows="5" cols="100" value=~([Students.U_PEI_FL]MATH_1_COMMENT)></textarea>
</td>
</tr>
<tr>
<td class="fl-label">Gr 1 Teacher:</td>
<td>
~[if#chkTeacher.~([Students.U_PEI_FL]MATH_1_TEACHER)=]
<input name="[Students.U_PEI_FL]MATH_1_TEACHER" class="fl_teacher">
[else#chkTeacher]
<input name="[Students.U_PEI_FL]MATH_1_TEACHER" class="fl_teacher" value=~([Students.U_PEI_FL]MATH_1_TEACHER)>
[/if#chkTeacher]
</td>
</tr>
<tr>
<td class="fl-label">Gr 1 School:</td>
<td>
~[if#chkSchool.~([Students.U_PEI_FL]MATH_1_SCHOOL)=]
<input name="[Students.U_PEI_FL]MATH_1_SCHOOL" class="fl_school">
[else#chkSchool]
<input name="[Students.U_PEI_FL]MATH_1_SCHOOL" class="fl_school" value=~([Students.U_PEI_FL]MATH_1_SCHOOL)>
[/if#chkSchool]
</td>
</tr>
<tr>
<td class="fl-label">Gr 1 Year:</td>
<td>
~[if#chkYear.~([Students.U_PEI_FL]MATH_1_YEAR)=]
<input name="[Students.U_PEI_FL]MATH_1_YEAR" class="fl_year">
[else#chkYear]
<input name="[Students.U_PEI_FL]MATH_1_YEAR" class="fl_year" value=~([Students.U_PEI_FL]MATH_1_YEAR)>
[/if#chkYear]
</td>
</tr>
[else#chkGrade]
<tr>
<td class="fl-label">Gr 1 Comment</td>
<td>
~([Students.U_PEI_FL]MATH_1_COMMENT)
</td>
</tr>
<tr>
<td class="fl-label">Gr 1 Teacher:</td>
<td>
~([Students.U_PEI_FL]MATH_1_TEACHER)
</td>
</tr>
<tr>
<td class="fl-label">Gr 1 School:</td>
<td>
~([Students.U_PEI_FL]MATH_1_SCHOOL)
</td>
</tr>
<tr>
<td class="fl-label">Gr 1 Year:</td>
<td>
~([Students.U_PEI_FL]MATH_1_YEAR)
</td>
</tr>
[/if#chkGrade]
</table>
</div>
<h2 class="toggle collapsed">ELA</h2>
<div>
<table class="linkDescList">
<colgroup>
<col style="width:20%">
<col>
</colgroup>
<tr>
<td class="fl-label">1-SL3.1
<span class="tooltiptext"> demonstrate a growing awareness of social conventions such as turn-taking and politeness in conversation and co-operative play
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_1_SL31)$"Y"]
~([Students.U_PEI_FL]ELA_1_SL31)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_1_SL31" id="selectELA_1_SL31">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_1_SL31))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">1-RS1
<span class="tooltiptext"> Monitor reading and self-correct when reading does not make sense, sound right and/or look right; reread to check for meaning (may require occasional prompting)</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_1_RS1)$"Y"]
~([Students.U_PEI_FL]ELA_1_RS1)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_1_RS1" id="selectELA_1_RS1">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_1_RS1))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">1-RS2
<span class="tooltiptext">Use meaning, word structure (plurals, roots and ing, ed, s endings), language structure (e.g., predictable word order and language patterns), and phonics (e.g., initial/final/medial sounds; onsets and rimes;
common spelling patterns) to solve simple words; may require occasional prompting </span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_1_RS2)$"Y"]
~([Students.U_PEI_FL]ELA_1_RS2)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_1_RS2" id="selectELA_1_RS2">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_1_RS2))]</select>
[/if#Y]
</td>
</tr>
<tr>
<td class="fl-label">1-RS3
<span class="tooltiptext">Recognize common high frequency words and personally significant words
</span>
</td>
<td>~[if#Y.~([Students.U_PEI_FL]ELA_1_RS3)$"Y"]
~([Students.U_PEI_FL]ELA_1_RS3)
[else#Y]
<select name="[Students.U_PEI_FL]ELA_1_RS3" id="selectELA_1_RS3">~[x:codesetoptions;codetype=FoundationalLearning;includeblank;value=~([Students.U_PEI_FL]ELA_1_RS3))]</select>