-
Notifications
You must be signed in to change notification settings - Fork 0
/
onramp-student-srm.html
1167 lines (1037 loc) · 129 KB
/
onramp-student-srm.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>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Onramp Counselor SRM</title>
<link rel="icon" href="images/pathways-color-icon.png">
<link href="css/vendor/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="css/vendor/editor.css" rel="stylesheet" type="text/css">
<link href="css/vendor/animate.css" rel="stylesheet" type="text/css">
<link href="css/vendor/jquery.fullpage.min.css" rel="stylesheet" type="text/css">
<link href="css/vendor/jquery-ui-min.css" rel="stylesheet" type="text/css">
<link href="css/vendor/jquery.tagit.css" rel="stylesheet" type="text/css">
<link href="css/vendor/tagit.ui-zendesk.css" rel="stylesheet" type="text/css">
<link href="css/vendor/toastr.min.css" rel="stylesheet" type="text/css">
<link href="css/vendor/datatables.min.css" rel="stylesheet" type="text/css">
<link href="css/onramp-main-menu.css" rel="stylesheet" type="text/css">
<link href="css/vendor/toastr.min.css" rel="stylesheet" type="text/css">
<link href="css/onramp-main-menu.css" rel="stylesheet" type="text/css">
<link href="css/main-style.css" rel="stylesheet" type="text/css">
<link href="css/onramp-student-srm.css" rel="stylesheet" type="text/css">
</head>
<body id="skin-blur-violate">
<!-- PRELOADER
============================== -->
<div class="preloader">
<img src="images/preloader.gif" alt="Loading..." class="preloader__img">
</div>
<!-- MAIN HEADER TOOLBAR-->
<!-- Header -->
<header class="l-header">
<!-- Logo -->
<a href="" class="b-logo">
<img src="images/logo.png" alt="My Path">
</a>
<!-- /Logo -->
<div class="b-sidebar">
<div class="b-sidebar__overlay"></div>
<a href="" class="b-sidebar__toggler">
<img src="assets/img/menu.svg" alt="">
</a>
<div class="b-sidebar__content">
<!-- Topbar -->
<div class="b-topbar bg-black">
<!-- User panel -->
<div class="b-user-panel">
<div class="b-user-panel__info">
<a href="" class="b-user-panel__name">Alexandra Williams</a>
<div class="b-user-panel__pict">
<img src="images/avatars/f3.jpg" class="img-circle avatar-height-30" alt="Alexandra Williams">
</div>
</div>
<ul class="b-user-panel__menu animated fadeInUp">
<li class="b-user-panel__menu-item">
<a href=""><i class="fa fa-user margin-right-5"></i> Profile</a>
</li>
<li class="b-user-panel__menu-item">
<a href=""><i class="fa fa-question-circle margin-right-5"></i> Help</a>
</li>
<li class="b-user-panel__menu-item">
<a href=""><i class="fa fa-sign-out margin-right-5"></i> Sign Out</a>
</li>
</ul>
</div>
<!-- /User panel -->
<!-- Notifications -->
<div class="b-notifications">
<a href="" class="b-notifications__icon">
<span class="b-notifications__icon-text">
Notifications
</span>
<span class="b-notifications__icon-picture">
<i class="fa fa-envelope-o" style="font-size:20px;"></i>
<span class="b-notifications__count">153</span>
</span>
</a>
</div>
<!-- /Notifications -->
<!-- Search form -->
<!-- <form class="b-search-form">
<input type="text" class="b-search-form__input" placeholder="Search...">
<button type="submit" class="b-search-form__button"></button>
</form> -->
<!-- /Search form -->
<!-- skin changer modal-->
<div style="display:none;" class="modal fade in" id="changeSkin" tabindex="-1" role="dialog" aria-hidden="false">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button><h4 class="modal-title">Change Template Skin</h4></div>
<div class="modal-body">
<div class="row template-skins">
<a data-skin="skin-blur-violate" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-violate.jpg" alt="">
</a><a data-skin="skin-blur-lights" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-lights.jpg" alt="">
</a><a data-skin="skin-blur-city" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-city.jpg" alt="">
</a><a data-skin="skin-blur-greenish" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-greenish.jpg" alt="">
</a><a data-skin="skin-blur-night" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-night.jpg" alt="">
</a><a data-skin="skin-blur-blue" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-blue.jpg" alt="">
</a><a data-skin="skin-blur-sunny" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-sunny.jpg" alt="">
</a><a data-skin="skin-retro-burn" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-retro-burn.jpg" alt="">
</a><a data-skin="skin-tectile" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-tectile.jpg" alt="">
</a><a data-skin="skin-blur-chrome" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-chrome.jpg" alt="">
</a><a data-skin="skin-blur-ocean" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-ocean.jpg" alt="">
</a><a data-skin="skin-blur-sunset" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-sunset.jpg" alt="">
</a><a data-skin="skin-blur-yellow" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-yellow.jpg" alt="">
</a><a data-skin="skin-blur-kiwi" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-kiwi.jpg" alt="">
</a><a data-skin="skin-blur-nexus" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-nexus.jpg" alt="">
</a>
<a data-skin="skin-blur-summer-bokeh" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-summer-bokeh.jpg" alt="">
</a>
<a data-skin="skin-blur-spring-bokeh" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-spring-bokeh.jpg" alt="">
</a>
<a data-skin="skin-blur-chalkboard" class="col-sm-2 col-xs-4" href="">
<img src="images/skins/skin-chalkboard.jpg" alt="">
</a>
</div>
</div>
</div>
</div>
</div>
<!-- skin changer modal-->
</div>
<!-- /Topbar -->
<!-- Menu -->
<nav class="b-menu bg_opacity60">
<div class="col-lg-6">
<ul class="b-menu__list ">
<li class="b-menu__list-item -active-item">
<a class="dropdown-toggle" data-toggle="dropdown">OnRamp</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="">Dashboard</a>
</li>
<li class="dropdown-submenu">
<a href="">Highschools</a>
<ul class="dropdown-menu">
<li> <a href="">Highschool 1</a> </li>
<li> <a href="">Highschool 2</a> </li>
<li> <a href="">Highschool 3</a> </li>
<li> <a href="">Highschool 4</a> </li>
<li> <a href="">Highschool 5</a> </li>
</ul>
</li>
</ul>
</li>
<li class="b-menu__list-item">
<a class="dropdown-toggle" data-toggle="dropdown">explore</a>
<ul class="dropdown-menu" role="menu">
<li> <a href="">Dashboard</a> </li>
<li> <a href="">Search</a> </li>
<li class="dropdown-submenu">
<a href="">Quick Search</a>
<ul class="dropdown-menu">
<li>
<a>
<form role="search" class="" action="#">
<div id="search">
<input class="" placeholder="Search..." type="text"><button data-original-title="Search" type="submit" class="tip-right" title=""><i class="fa fa-search"></i></button>
</div>
</form>
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="b-menu__list-item">
<a href="">Outreach</a>
</li>
<li class="b-menu__list-item">
<a href="">Pathways</a>
</li>
</ul>
</div>
<div class="col-lg-6">
<a id="settings" data-toggle="modal" href="#changeSkin"><i class="fa fa-cog margin-right-5 "></i> Change Skin</a>
</div>
</nav>
<!-- /Menu -->
</div>
</div>
</header>
<!-- /Header -->
<!-- MAIN HEADER TOOLBAR-->
<!-- start main content wrapper-->
<!-- bread crumb-->
<ol class="breadcrumb animated fadeInRight">
<li>
<a href="index.html">Home</a>
</li>
<li class="active">
<a>Counselor SRM</a>
</li>
</ol>
<!--bread crumb-->
<div class="wrapper wrapper-content animated fadeInRight">
<div class="row">
<div class="col-lg-12">
<div class="ibox float-e-margins">
<div class="ibox-title bg_opacity35">
</div>
<!-- Tab panes -->
<div class="tab-content">
<!--profile tab-->
<div role="tabpanel" class="tab-pane animated fadeIn active" id="profile">
<div class="ibox-content bg_opacity35">
<div id="fullpage">
<div class="row">
<div class="col-md-12">
<section class="module">
<div class="module-inner">
<div class="side-bar bg_opacity35">
<div class="col-sm-12 bg_opacity60" style="min-height:100px;">
</div>
<div class="user-info">
<img class="img-profile img-circle img-responsive center-block" src="images/avatars/f3.jpg" alt="">
<ul class="meta list list-unstyled">
<li class="name">
Alexandra Williams
</li>
</ul>
<ul class="list-unstyled attr ">
<li>
<p class="text-muted">
<span class="txt-color-darken">
<span>123 West Street</span>
<br />
<span>Sacramento, Ca. 95864</span>
</span> <i class="fa fa-map-marker"></i>
</p>
</li>
<li>
<p class="text-muted">
<a class="link" href="mailto:">[email protected]</a> <i class="fa fa-envelope"></i>
</p>
</li>
<li>
<p class="text-muted">
(<span class="txt-color-darken">313</span>) <span class="txt-color-darken">464</span> - <span class="txt-color-darken">6473</span> <i class="fa fa-phone"></i>
</p>
</li>
<li>
<p class="text-muted">
<span class="txt-color-darken">Caucasian/White</span> <i class="fa fa-paint-brush"></i>
</p>
</li>
<li>
<p class="text-muted">
<span class="txt-color-darken">Accounting</span> <i class="fa fa-book"></i>
</p>
</li>
<li>
<p class="text-muted">
<span class="txt-color-darken">Blah</span> <i class="fa fa-trophy"></i>
</p>
</li>
</ul>
</div>
<nav class="side-menu tabs-container ">
<ul class="nav nav-tabs">
<li data-menuanchor="noteSection" class="active"><a data-toggle="tab" href="#tabNote"><i class="fa fa-sticky-note-o margin-right-5"></i> Notes</a></li>
<li data-menuanchor="emailSection"><a data-toggle="tab" href="#tabEmail"><i class="fa fa-envelope-o margin-right-5"></i> Email</a></li>
<li data-menuanchor="historySection"><a data-toggle="tab" href="#tabHistory"><i class="fa fa-history margin-right-5"></i> History</a></li>
</ul>
</nav>
</div>
<form class="form-horizontal">
<div class="content-panel tab-content bg-white">
<!-- note -->
<div id="tabNote" class="tab-pane animated fadeIn active">
<div class="panel-body">
<!--<h2 class="title"><i class="fa fa-sticky-note-o margin-right-5"></i>Notes</h2>-->
<!--task list-->
<div class="row">
<div class="section fp-auto-height" id="">
<div class="slide" data-anchor="noteSection1">
<div class="intro">
<h2 class="title"><i class="fa fa-sticky-note-o margin-right-5"></i>Notes</h2>
<div class="table-responsive">
<div class="dataTables_wrapper form-inline dt-bootstrap no-footer" id="noteList_wrapper">
<table role="grid" id="noteList" class="table table-striped table-hover dataTable no-footer">
<thead>
<tr role="row">
<th aria-label="Note ID: activate to sort column descending" aria-sort="ascending" style="width: 50px;" colspan="1" rowspan="1" aria-controls="noteList" tabindex="0" class="sorting_asc">Note ID</th>
<th aria-label="Date Created: activate to sort column ascending" style="width: 50px;" colspan="1" rowspan="1" aria-controls="noteList" tabindex="0" class="sorting">Date Created</th>
<th aria-label="Author: activate to sort column ascending" style="width: 100px;" colspan="1" rowspan="1" aria-controls="noteList" tabindex="0" class="sorting">Author</th>
<th aria-label="Note: activate to sort column ascending" style="width: 550px;" colspan="1" rowspan="1" aria-controls="noteList" tabindex="0" class="sorting">Note</th>
<th aria-label="Action: activate to sort column ascending" style="width: 50px;" colspan="1" rowspan="1" aria-controls="noteList" tabindex="0" class="sorting">Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td><i class="fa fa-sticky-note-o"></i><span class="m-l-md">01/04/2016</span></td>
<td>Alexandra Williams</td>
<td> <span class="truncate-long"> <a href="#noteSection/noteSection2">Notes blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a> </span></td>
<td>
<a href="" data-toggle="modal" data-target="#deleteNoteModal" class="btn btn-white btn-sm" title="Delete Note"><i class="fa fa-trash-o"></i> Delete</a>
</td>
</tr>
<tr>
<td>2</td>
<td><i class="fa fa-sticky-note-o"></i><span class="m-l-md">01/04/2016</span></td>
<td>Alexandra Williams</td>
<td> <span class="truncate-long"> <a href="#noteSection/noteSection2">Notes blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a> </span></td>
<td>
<a href="" data-toggle="modal" data-target="#deleteNoteModal" class="btn btn-white btn-sm" title="Delete Note"><i class="fa fa-trash-o"></i> Delete</a>
</td>
</tr>
<tr>
<td>3</td>
<td><i class="fa fa-sticky-note-o"></i><span class="m-l-md">01/04/2016</span></td>
<td>Alexandra Williams</td>
<td> <span class="truncate-long"> <a href="#noteSection/noteSection2">Notes blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a> </span></td>
<td>
<a href="" data-toggle="modal" data-target="#deleteNoteModal" class="btn btn-white btn-sm" title="Delete Note"><i class="fa fa-trash-o"></i> Delete</a>
</td>
</tr>
<tr>
<td>4</td>
<td><i class="fa fa-sticky-note-o"></i><span class="m-l-md">01/04/2016</span></td>
<td>Alexandra Williams</td>
<td> <span class="truncate-long"> <a href="#noteSection/noteSection2">Notes blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a> </span></td>
<td>
<a href="" data-toggle="modal" data-target="#deleteNoteModal" class="btn btn-white btn-sm" title="Delete Note"><i class="fa fa-trash-o"></i> Delete</a>
</td>
</tr>
<tr>
<td>5</td>
<td><i class="fa fa-sticky-note-o"></i><span class="m-l-md">01/04/2016</span></td>
<td>Alexandra Williams</td>
<td> <span class="truncate-long"> <a href="#noteSection/noteSection2">Notes blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a> </span></td>
<td>
<a href="" data-toggle="modal" data-target="#deleteNoteModal" class="btn btn-white btn-sm" title="Delete Note"><i class="fa fa-trash-o"></i> Delete</a>
</td>
</tr>
<tr>
<td>6</td>
<td><i class="fa fa-sticky-note-o"></i><span class="m-l-md">01/04/2016</span></td>
<td>Alexandra Williams</td>
<td> <span class="truncate-long"> <a href="#noteSection/noteSection2">Notes blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a> </span></td>
<td>
<a href="" data-toggle="modal" data-target="#deleteNoteModal" class="btn btn-white btn-sm" title="Delete Note"><i class="fa fa-trash-o"></i> Delete</a>
</td>
</tr>
<tr>
<td>7</td>
<td><i class="fa fa-sticky-note-o"></i><span class="m-l-md">01/04/2016</span></td>
<td>Alexandra Williams</td>
<td> <span class="truncate-long"> <a href="#noteSection/noteSection2">Notes blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a> </span></td>
<td>
<a href="" data-toggle="modal" data-target="#deleteNoteModal" class="btn btn-white btn-sm" title="Delete Note"><i class="fa fa-trash-o"></i> Delete</a>
</td>
</tr>
<tr>
<td>8</td>
<td><i class="fa fa-sticky-note-o"></i><span class="m-l-md">01/04/2016</span></td>
<td>Alexandra Williams</td>
<td> <span class="truncate-long"> <a href="#noteSection/noteSection2">Notes blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a> </span></td>
<td>
<a href="" data-toggle="modal" data-target="#deleteNoteModal" class="btn btn-white btn-sm" title="Delete Note"><i class="fa fa-trash-o"></i> Delete</a>
</td>
</tr>
<tr>
<td>9</td>
<td><i class="fa fa-sticky-note-o"></i><span class="m-l-md">01/04/2016</span></td>
<td>Alexandra Williams</td>
<td> <span class="truncate-long"> <a href="#noteSection/noteSection2">Notes blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a> </span></td>
<td>
<a href="" data-toggle="modal" data-target="#deleteNoteModal" class="btn btn-white btn-sm" title="Delete Note"><i class="fa fa-trash-o"></i> Delete</a>
</td>
</tr>
<tr>
<td>10</td>
<td><i class="fa fa-sticky-note-o"></i><span class="m-l-md">01/04/2016</span></td>
<td>Alexandra Williams</td>
<td> <span class="truncate-long"> <a href="#noteSection/noteSection2">Notes blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a> </span></td>
<td>
<a href="" data-toggle="modal" data-target="#deleteNoteModal" class="btn btn-white btn-sm" title="Delete Note"><i class="fa fa-trash-o"></i> Delete</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="pull-left">
<a href="#noteSection/noteSection2" class="btn btn-white btn-sm pull-left add-note" title="Add Note"><i class="fa fa-plus"></i> Add Note</a>
</div>
</div>
</div>
<div class="slide" data-anchor="noteSection2">
<div class="intro">
<h2 class="title"><i class="fa fa-sticky-note-o margin-right-5"></i><span class="noteHeaderAddMode hide">Create Note</span><span class="noteHeaderViewMode">Note Details</span> </h2>
<div class="ibox-content">
<div class="row">
<div class="col-lg-12">
<div class="m-b-md">
<a href="#" class="edit-note btn btn-white btn-xs pull-right">Edit Note</a>
<!--<h2>Contact with <a href="#" class="text-navy">Alexandra Williams</a> </h2>-->
<h2><a href="#" class="text-navy"><span class="noteHeaderViewMode">0001</span></a> </h2>
</div>
<!--<dl class="dl-horizontal">
<dt>Status:</dt>
<dd><span class="label label-primary">Active</span></dd>
</dl>-->
</div>
</div>
<div class="row">
<div class="col-lg-5">
<dl class="dl-horizontal">
<dt>Created by:</dt>
<dd><a href="#" class="text-navy"> Alex Smith</a> </dd>
<dt>Note Revision:</dt>
<dd> 03</dd>
<dt>Note Category:</dt>
<dd id="noteCategory">Appointment</dd>
<dd id="noteCategoryEdit" class="hide">
<select>
<option>No Category Chosen</option>
<option>Appointment</option>
<option>Call</option>
<option>Email</option>
<option>SMS</option>
</select>
</dd>
<dt>Note Follow-up:</dt>
<dd id="noteFollowUp"> 7 Days</dd>
<dd id="noteFollowUpEdit" class="hide">
<select>
<option>No Follow Up Chosen</option>
<option>1 Day</option>
<option>2 Days</option>
<option>3 Days</option>
<option>4 Days</option>
<option>5 Days</option>
<option>6 Days</option>
<option>7 Days</option>
</select>
</dd>
</dl>
</div>
<div class="col-lg-7" id="cluster_info">
<dl class="dl-horizontal">
<dt>Last Updated:</dt>
<dd>09/13/2016 2:05 PM</dd>
<dt>Created:</dt>
<dd>12/01/2016 12:13 PM</dd>
<dt>Participants:</dt>
<dd class="project-people">
<a href=""><img alt="image" class="img-circle" src="images/avatars/f5.jpg"></a>
<a href=""><img alt="image" class="img-circle" src="images/avatars/m2.jpg"></a>
<a href=""><img alt="image" class="img-circle" src="images/avatars/f7.jpg"></a>
<a href=""><img alt="image" class="img-circle" src="images/avatars/m8.jpg"></a>
<a href=""><img alt="image" class="img-circle" src="images/avatars/f1.jpg"></a>
</dd>
</dl>
</div>
</div>
<div class="row m-t-sm">
<div class="col-lg-12">
<div class="panel blank-panel">
<div class="panel-heading">
<div class="panel-options">
<ul class="nav nav-tabs">
<li class="active"><a href="#currentNoteTab" data-toggle="tab" aria-expanded="false">Current Note</a></li>
<li class=""><a href="#historyNoteTab" data-toggle="tab" aria-expanded="true">Note Activity</a></li>
</ul>
</div>
</div>
<div class="panel-body">
<div class="tab-content">
<div class="tab-pane active" id="currentNoteTab">
<div class="feed-activity-list">
<div class="feed-element">
<div class="media-header">
<a href="#" class="pull-left">
<img alt="image" class="img-circle" src="images/avatars/f5.jpg">
</a>
</div>
<div class="media-body ">
<div class="media-header">
<small class="pull-right">2h ago</small>
<strong>Monica Smith</strong> posted note on <strong>Alexandra Williams</strong> profile. <br>
<small class="text-muted">Today 2:10 pm - .06.2014</small>
</div>
<div id="currentNote" class="well ">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. Over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
</div>
<div id="editNote" class="well hide">
<textarea rows="5" placeholder="No note text present." class="form-control">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. Over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</textarea>
</div>
</div>
</div>
<div class="pull-right">
<a id="saveNoteButton" href="#noteSection/noteSection1" class="btn btn-white btn-sm margin-right-5 hide" title="Add Task"><i class="fa fa-save"></i> Save</a>
<a id="cancelNoteButton" href="#noteSection/noteSection1" class="btn btn-white btn-sm hide " title="Add Task"><i class="fa fa-times"></i> Cancel</a>
</div>
</div>
</div>
<div class="tab-pane" id="historyNoteTab">
<div class="table-responsive">
<table class="table table-striped table-hover">
<thead>
<tr>
<th style="width: 150px;">Created By</th>
<th style="width: 50px;">Date Created</th>
<th>Note</th>
</tr>
</thead>
<tbody>
<tr>
<td class="client-avatar"><img alt="image" src="images/avatars/f5.jpg"> <a href="#" class="client-link">Monica Smith</a></td>
<td>12/01/2016 12:13 PM</td>
<td>
<div class="ibox collapsed">
<div class="ibox-title">
<span class="truncate">Edited the lastest note - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</span>
<div class="ibox-tools pull-right">
<a class="collapse-link">
<i class="fa fa-chevron-up"></i>
</a>
</div>
</div>
<div class="ibox-content" style="display: none;">
<div class="well">
Edited the lastest note - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
</div>
</div>
</div>
</td>
</tr>
<tr>
<td class="client-avatar"><img alt="image" src="images/avatars/f5.jpg"> <a href="#" class="client-link">Monica Smith</a></td>
<td>11/15/2016 9:13 PM</td>
<td>
<div class="ibox collapsed">
<div class="ibox-title">
<span class="truncate">Edited the note a second time - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</span>
<div class="ibox-tools pull-right">
<a class="collapse-link">
<i class="fa fa-chevron-up"></i>
</a>
</div>
</div>
<div class="ibox-content" style="display: none;">
<div class="well">
Edited the note a second time - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
</div>
</div>
</div>
</td>
</tr>
<tr>
<td class="client-avatar"><img alt="image" src="images/avatars/m2.jpg"> <a href="#" class="client-link">Alex Smith</a></td>
<td>09/13/2016 2:05 PM</td>
<td>
<div class="ibox collapsed">
<div class="ibox-title">
<span class="truncate">Added the first note - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</span>
<div class="ibox-tools pull-right">
<a class="collapse-link">
<i class="fa fa-chevron-up"></i>
</a>
</div>
</div>
<div class="ibox-content" style="display: none;">
<div class="well">
Added the first note - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="pull-right">
<a id="closeNoteButton" href="#noteSection/noteSection1" class="btn btn-white btn-sm " title="Close"><i class="fa fa-times"></i> Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- note -->
<!-- email -->
<div id="tabEmail" class="tab-pane animated fadeIn">
<div class="panel-body">
<!--email list-->
<div id="fullpage_email">
<div class="row">
<div class="section fp-auto-height" id="">
<div class="slide" data-anchor="emailSection1">
<div class="intro">
<h2 class="title"><i class="fa fa-envelope-o margin-right-5"></i>Emails</h2>
<div class="table-responsive">
<div class="dataTables_wrapper form-inline dt-bootstrap no-footer" id="emailList_wrapper">
<table role="grid" id="emailList" class="table table-striped table-hover dataTable no-footer">
<thead>
<tr role="row">
<th aria-label="ID: activate to sort column descending" aria-sort="ascending" style="width: 50px;" colspan="1" rowspan="1" aria-controls="emailList" tabindex="0" class="sorting_asc">ID</th>
<th aria-label="From: activate to sort column descending" aria-sort="ascending" style="min-width: 150px;" colspan="1" rowspan="1" aria-controls="emailList" tabindex="0" class="sorting_asc">From</th>
<th aria-label="Email: activate to sort column ascending" style="min-width: 500px;" colspan="1" rowspan="1" aria-controls="emailList" tabindex="0" class="sorting">Subject</th>
<th aria-label="Date: activate to sort column ascending" style="max-width: 50px;" colspan="1" rowspan="1" aria-controls="emailList" tabindex="0" class="sorting">Date</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td class="client-avatar"><i class="fa fa-envelope-o"></i><span class="m-l-md"><img alt="image" src="images/avatars/f5.jpg"></span> <a href="#" class="client-link">Monica Smith</a></td>
<td> <span class="truncate-long"> <a href="#emailSection/emailSection2"> Emails blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a></span></td>
<td>01/04/2016 2:13 PM</td>
</tr>
<tr>
<td>2</td>
<td class="client-avatar"><i class="fa fa-envelope-o"></i><span class="m-l-md"><img alt="image" src="images/avatars/f3.jpg"></span><a href="#" class="client-link">Monica Smith</a></td>
<td> <span class="truncate-long"> <a href="#emailSection/emailSection2"> Emails blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a></span></td>
<td>01/04/2016 2:13 PM</td>
</tr>
<tr>
<td>3</td>
<td class="client-avatar"><i class="fa fa-envelope-o"></i><span class="m-l-md"><img alt="image" src="images/avatars/f5.jpg"></span><a href="#" class="client-link">Monica Smith</a></td>
<td> <span class="truncate-long"> <a href="#emailSection/emailSection2"> Emails blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a></span></td>
<td>01/04/2016 2:13 PM</td>
</tr>
<tr>
<td>4</td>
<td class="client-avatar"><i class="fa fa-envelope-o"></i><span class="m-l-md"><img alt="image" src="images/avatars/f3.jpg"></span><a href="#" class="client-link">Alexandra Williams </a></td>
<td> <span class="truncate-long"> <a href="#emailSection/emailSection2"> Emails blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a></span></td>
<td>01/04/2016 2:13 PM</td>
</tr>
<tr>
<td>5</td>
<td class="client-avatar"><i class="fa fa-envelope-o"></i><span class="m-l-md"><img alt="image" src="images/avatars/f5.jpg"></span><a href="#" class="client-link">Monica Smith</a></td>
<td> <span class="truncate-long"> <a href="#emailSection/emailSection2"> Emails blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a></span></td>
<td>01/04/2016 2:13 PM</td>
</tr>
<tr>
<td>6</td>
<td class="client-avatar"><i class="fa fa-envelope-o"></i><span class="m-l-md"><img alt="image" src="images/avatars/f3.jpg"></span><a href="#" class="client-link">Alexandra Williams </a></td>
<td> <span class="truncate-long"> <a href="#emailSection/emailSection2"> Emails blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a></span></td>
<td>01/04/2016 2:13 PM</td>
</tr>
<tr>
<td>7</td>
<td class="client-avatar"><i class="fa fa-envelope-o"></i><span class="m-l-md"><img alt="image" src="images/avatars/f3.jpg"></span><a href="#" class="client-link">Alexandra Williams </a></td>
<td> <span class="truncate-long"> <a href="#emailSection/emailSection2"> Emails blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah</a></span></td>
<td>01/04/2016 2:13 PM</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="pull-left">
<a href="#emailSection/emailSection3" class="btn btn-white btn-sm pull-left add-email" title="Add Email"><i class="fa fa-plus"></i> Create Email</a>
</div>
</div>
</div>
<div class="slide" data-anchor="emailSection2">
<div class="intro">
<h2 class="title"><i class="fa fa-envelope-o margin-right-5"></i>Email Detail</h2>
<div class="ibox-content">
<div class="row m-t-sm">
<div class="col-lg-12">
<div class="panel blank-panel">
<div class="panel-heading">
<dl class="dl-horizontal pull-right">
<dt>Participants:</dt>
<dd class="project-people">
<a href=""><img alt="image" class="img-circle" src="images/avatars/f5.jpg"></a>
<a href=""><img alt="image" class="img-circle" src="images/avatars/m2.jpg"></a>
<a href=""><img alt="image" class="img-circle" src="images/avatars/f7.jpg"></a>
<a href=""><img alt="image" class="img-circle" src="images/avatars/m8.jpg"></a>
<a href=""><img alt="image" class="img-circle" src="images/avatars/f1.jpg"></a>
</dd>
</dl>
<div class="panel-options">
<ul class="nav nav-tabs">
<li class="active"><a href="#currentEmailTab" data-toggle="tab" aria-expanded="false">Current Email</a></li>
<li class=""><a href="#relatedEmailTab" data-toggle="tab" aria-expanded="true">Related Email</a></li>
</ul>
<div class="panel-body">
<div class="tab-content">
<div class="tab-pane active" id="currentEmailTab">
<div class="wrapper">
<ul class="media-list underline m-b-20 p-b-15">
<li class="media media-sm clearfix">
<a href="javascript:;" class="pull-left">
<img class="media-object rounded-corner" alt="" src="images/avatars/f6.jpg">
</a>
<div class="media-body media-subject">
<span class="email-from text-inverse f-w-600">
From [email protected]
</span><span class="text-muted m-l-5"><i class="fa fa-clock-o fa-fw"></i> 8: 30 AM</span><br>
<span class="email-to">
</span>
</div>
</li>
</ul>
<h3 class="m-b-5 m-t-0 underline txt-color-darken">This may just be the coolest thing yet...</h3>
<div id="emailBodyContent" style="">
<br />
<p class="f-s-12 text-inverse">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vel auctor nisi, vel auctor orci. <br>
Aenean in pretium odio, ut lacinia tellus. Nam sed sem ac enim porttitor vestibulum vitae at erat.
</p>
<p class="f-s-12 text-inverse">
Curabitur auctor non orci a molestie. Nunc non justo quis orci viverra pretium id ut est. <br>
Nullam vitae dolor id enim consequat fermentum. Ut vel nibh tellus. <br>
Duis finibus ante et augue fringilla, vitae scelerisque tortor pretium. <br>
Phasellus quis eros erat. Nam sed justo libero.
</p>
<p class="f-s-12 text-inverse">
Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
Sed tempus dapibus libero ac commodo.
</p>
<br>
<br>
<p class="f-s-12 text-inverse">
Best Regards,<br>
Sean.<br><br>
Information Technology Department,<br>
Senior Front End Designer<br>
</p>
</div>
</div>
<div class="wrapper bg-silver-lighter text-right clearfix">
<div class="btn-group btn-toolbar">
<a href="#emailSection/emailSection3" class="btn btn-white btn-sm"><i class="fa fa-reply"></i>Reply</a>
<a href="#emailSection/emailSection3" class="btn btn-white btn-sm"><i class="fa fa-reply-all"></i> Replay All</a>
</div>
<div class="btn-group m-l-5">
<a href="#emailSection/emailSection3" class="btn btn-white btn-sm"><i class="fa fa-forward"></i> Forward</a>
</div>
</div>
</div>
<div class="tab-pane" id="relatedEmailTab">
<div class="table-responsive">
<table class="table table-striped table-hover">
<thead>
<tr>
<th style="width: 150px;">Created By</th>
<th style="width: 50px;">Date Created</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td class="client-avatar"><img alt="image" src="images/avatars/f5.jpg"> <a href="#" class="client-link">Monica Smith</a></td>
<td>12/01/2016 12:13 PM</td>
<td>
<div class="ibox collapsed">
<div class="ibox-title">
<span class="truncate">Edited the lastest email - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</span>
<div class="ibox-tools pull-right">
<a class="collapse-link">
<i class="fa fa-chevron-up"></i>
</a>
</div>
</div>
<div class="ibox-content" style="display: none;">
<div class="well">
Edited the lastest email - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
</div>
</div>
</div>
</td>
</tr>
<tr>
<td class="client-avatar"><img alt="image" src="images/avatars/f5.jpg"> <a href="#" class="client-link">Monica Smith</a></td>
<td>11/15/2016 9:13 PM</td>
<td>
<div class="ibox collapsed">
<div class="ibox-title">
<span class="truncate">Edited the email a second time - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</span>
<div class="ibox-tools pull-right">
<a class="collapse-link">
<i class="fa fa-chevron-up"></i>
</a>
</div>
</div>
<div class="ibox-content" style="display: none;">
<div class="well">
Edited the email a second time - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
</div>
</div>
</div>
</td>
</tr>
<tr>
<td class="client-avatar"><img alt="image" src="images/avatars/m2.jpg"> <a href="#" class="client-link">Alex Smith</a></td>
<td>09/13/2016 2:05 PM</td>
<td>
<div class="ibox collapsed">
<div class="ibox-title">
<span class="truncate">Added the first email - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been</span>
<div class="ibox-tools pull-right">
<a class="collapse-link">
<i class="fa fa-chevron-up"></i>
</a>
</div>
</div>
<div class="ibox-content" style="display: none;">
<div class="well">
Added the first email - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="pull-right">
<a id="closeNoteButton" href="#emailSection/emailSection1" class="btn btn-white btn-sm " title="Close"><i class="fa fa-times"></i> Close</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="slide" data-anchor="emailSection3">
<div class="intro">
<h2 class="title"><i class="fa fa-envelope-o margin-right-5"></i>Compose New Email</h2>
<!-- begin email to -->
<label class="control-label">To:</label>
<div class="m-b-5">
<ul id="email-to">
</ul>
</div>
<!-- end email to -->
<!-- begin email subject -->
<label class="control-label">Subject:</label>
<div class="m-b-5">
<input class="form-control" type="text">
</div>
<!-- end email subject -->
<div class="ibox-content no-padding">
<label class="control-label">Message:</label>
<div class="m-b-5">
<textarea id="newMessageContent" placeholder="Type message here" style="background-color: rgb(255, 255, 255); color: rgb(85, 85, 85); cursor: text; " spellcheck="true" class="textarea form-control placeholder" contenteditable="true"></textarea>
</div>
</div>
<div class="pull-right">
<a href="#emailSection/emailSection1" class="btn btn-white btn-sm pull-left add-email" title="Add Email"><i class="fa fa-times"></i> Discard</a>
<a href="#emailSection/emailSection1" class="btn btn-white btn-sm pull-left add-email" title="Add Email"><i class="fa fa-send-o"></i> Send</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- email -->
</div>
</div>
<!-- email -->
<!-- history -->
<div id="tabHistory" class="tab-pane animated fadeIn">
<div class="panel-body">
<!--<h2 class="title"><i class="fa fa-history margin-right-5"></i>History</h2>-->
<!--history list-->
<div id="fullpage_history">
<div class="row">
<div class="section fp-auto-height" id="">