├── .gitattributes ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── Screenshots ├── dashboard.png ├── managestudent.png └── subjectcombination.png ├── dashboard ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-37.pyc ├── models.py ├── templates │ ├── dashboard.html │ ├── find_result.html │ ├── index.html │ ├── password_change_form.html │ └── result.html ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── manage.py ├── requirements.txt ├── requirments.txt ├── results ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── forms.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ └── __init__.cpython-37.pyc ├── models.py ├── templates │ └── results │ │ ├── declareresult_form.html │ │ ├── declareresult_list.html │ │ ├── result_delete.html │ │ └── update_form.html ├── tests.py ├── urls.py └── views.py ├── runtime.txt ├── srms ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc ├── settings.py ├── urls.py └── wsgi.py ├── static ├── css │ ├── .DS_Store │ ├── animate-css │ │ └── animate.min.css │ ├── bootstrap-switch │ │ ├── bootstrap-switch.css │ │ └── bootstrap-switch.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── ckeditor │ │ ├── .DS_Store │ │ └── skins │ │ │ ├── .DS_Store │ │ │ └── moono-lisa │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── spinner.gif │ │ │ └── readme.md │ ├── dropzone │ │ ├── dropzone.css │ │ └── dropzone.min.css │ ├── font-awesome.css │ ├── font-awesome.min.css │ ├── icheck │ │ ├── .DS_Store │ │ └── skins │ │ │ ├── .DS_Store │ │ │ ├── all.css │ │ │ ├── flat │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── flat.css │ │ │ ├── flat.png │ │ │ ├── flat@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ ├── futurico.css │ │ │ ├── futurico.png │ │ │ └── futurico@2x.png │ │ │ ├── line │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── green.css │ │ │ ├── grey.css │ │ │ ├── line.css │ │ │ ├── line.png │ │ │ ├── line@2x.png │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.css │ │ │ ├── minimal.png │ │ │ ├── minimal@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ ├── polaris.css │ │ │ ├── polaris.png │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── square.css │ │ │ ├── square.png │ │ │ ├── square@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ ├── iziModal │ │ ├── LICENSE │ │ ├── iziModal.css │ │ └── iziModal.min.css │ ├── jquery-steps │ │ └── jquery.steps.css │ ├── jquery-ui │ │ ├── jquery-ui.css │ │ └── jquery-ui.min.css │ ├── ladda │ │ ├── ladda-themeless.css │ │ └── ladda-themeless.min.css │ ├── lobipanel │ │ ├── lobipanel.css │ │ └── lobipanel.min.css │ ├── main.css │ ├── main.min.css │ ├── pace │ │ ├── pace-barber.css │ │ ├── pace-bounce.css │ │ ├── pace-center-atom.css │ │ ├── pace-center-circle.css │ │ ├── pace-center-radar.css │ │ ├── pace-center-simple.css │ │ ├── pace-corner.css │ │ ├── pace-counter.css │ │ ├── pace-fill-left.css │ │ ├── pace-flash.css │ │ ├── pace-loading-bar.css │ │ ├── pace-mac.css │ │ └── pace-minimal.css │ ├── pnotify │ │ └── pnotify.custom.min.css │ ├── prism │ │ └── prism.css │ ├── select2 │ │ ├── select2.css │ │ └── select2.min.css │ ├── summernote │ │ ├── .DS_Store │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ └── summernote.css │ ├── sweet-alert │ │ ├── .DS_Store │ │ └── sweetalert.css │ ├── switchery │ │ ├── switchery.css │ │ └── switchery.min.css │ ├── tagify │ │ └── tagify.css │ ├── tags │ │ └── jquery.tagsinput.min.css │ ├── toastr │ │ ├── .DS_Store │ │ ├── toastr.css │ │ └── toastr.min.css │ └── x-editable │ │ ├── .DS_Store │ │ ├── css │ │ └── bootstrap-editable.css │ │ └── img │ │ ├── clear.png │ │ └── loading.gif ├── fonts │ ├── .DS_Store │ ├── FontAwesome.otf │ ├── bootstrap │ │ ├── .DS_Store │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── images │ ├── .DS_Store │ ├── avatar-1.svg │ ├── logo-dark.svg │ ├── logo-light.svg │ ├── photo-1.jpg │ ├── photo-2.jpg │ ├── profile.jpg │ ├── sample.jpg │ └── thumbs-up-icon.png ├── js │ ├── .DS_Store │ ├── DataTables │ │ ├── Bootstrap-3.3.7 │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── Buttons-1.2.4 │ │ │ ├── css │ │ │ │ ├── buttons.bootstrap.css │ │ │ │ ├── buttons.bootstrap.min.css │ │ │ │ ├── buttons.dataTables.css │ │ │ │ ├── buttons.dataTables.min.css │ │ │ │ ├── buttons.foundation.css │ │ │ │ ├── buttons.foundation.min.css │ │ │ │ ├── buttons.jqueryui.css │ │ │ │ ├── buttons.jqueryui.min.css │ │ │ │ ├── buttons.semanticui.css │ │ │ │ ├── buttons.semanticui.min.css │ │ │ │ ├── common.scss │ │ │ │ └── mixins.scss │ │ │ ├── js │ │ │ │ ├── buttons.bootstrap.js │ │ │ │ ├── buttons.bootstrap.min.js │ │ │ │ ├── buttons.colVis.js │ │ │ │ ├── buttons.colVis.min.js │ │ │ │ ├── buttons.flash.js │ │ │ │ ├── buttons.flash.min.js │ │ │ │ ├── buttons.foundation.js │ │ │ │ ├── buttons.foundation.min.js │ │ │ │ ├── buttons.html5.js │ │ │ │ ├── buttons.html5.min.js │ │ │ │ ├── buttons.jqueryui.js │ │ │ │ ├── buttons.jqueryui.min.js │ │ │ │ ├── buttons.print.js │ │ │ │ ├── buttons.print.min.js │ │ │ │ ├── buttons.semanticui.js │ │ │ │ ├── buttons.semanticui.min.js │ │ │ │ ├── dataTables.buttons.js │ │ │ │ └── dataTables.buttons.min.js │ │ │ └── swf │ │ │ │ └── flashExport.swf │ │ ├── ColReorder-1.3.2 │ │ │ ├── css │ │ │ │ ├── colReorder.bootstrap.css │ │ │ │ ├── colReorder.bootstrap.min.css │ │ │ │ ├── colReorder.dataTables.css │ │ │ │ ├── colReorder.dataTables.min.css │ │ │ │ ├── colReorder.foundation.css │ │ │ │ ├── colReorder.foundation.min.css │ │ │ │ ├── colReorder.jqueryui.css │ │ │ │ └── colReorder.jqueryui.min.css │ │ │ └── js │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ └── dataTables.colReorder.min.js │ │ ├── DataTables-1.10.13 │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ ├── dataTables.bootstrap.min.css │ │ │ │ ├── dataTables.foundation.css │ │ │ │ ├── dataTables.foundation.min.css │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ ├── dataTables.jqueryui.min.css │ │ │ │ ├── dataTables.semanticui.css │ │ │ │ ├── dataTables.semanticui.min.css │ │ │ │ ├── jquery.dataTables.css │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ ├── dataTables.foundation.js │ │ │ │ ├── dataTables.foundation.min.js │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ ├── dataTables.jqueryui.min.js │ │ │ │ ├── dataTables.semanticui.js │ │ │ │ ├── dataTables.semanticui.min.js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── FixedColumns-3.2.2 │ │ │ ├── css │ │ │ │ ├── fixedColumns.bootstrap.css │ │ │ │ ├── fixedColumns.bootstrap.min.css │ │ │ │ ├── fixedColumns.dataTables.css │ │ │ │ ├── fixedColumns.dataTables.min.css │ │ │ │ ├── fixedColumns.foundation.css │ │ │ │ ├── fixedColumns.foundation.min.css │ │ │ │ ├── fixedColumns.jqueryui.css │ │ │ │ └── fixedColumns.jqueryui.min.css │ │ │ └── js │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ └── dataTables.fixedColumns.min.js │ │ ├── FixedHeader-3.1.2 │ │ │ ├── css │ │ │ │ ├── fixedHeader.bootstrap.css │ │ │ │ ├── fixedHeader.bootstrap.min.css │ │ │ │ ├── fixedHeader.dataTables.css │ │ │ │ ├── fixedHeader.dataTables.min.css │ │ │ │ ├── fixedHeader.foundation.css │ │ │ │ ├── fixedHeader.foundation.min.css │ │ │ │ ├── fixedHeader.jqueryui.css │ │ │ │ └── fixedHeader.jqueryui.min.css │ │ │ └── js │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ └── dataTables.fixedHeader.min.js │ │ ├── JSZip-2.5.0 │ │ │ ├── jszip.js │ │ │ └── jszip.min.js │ │ ├── Responsive-2.1.1 │ │ │ ├── css │ │ │ │ ├── responsive.bootstrap.css │ │ │ │ ├── responsive.bootstrap.min.css │ │ │ │ ├── responsive.dataTables.css │ │ │ │ ├── responsive.dataTables.min.css │ │ │ │ ├── responsive.foundation.css │ │ │ │ ├── responsive.foundation.min.css │ │ │ │ ├── responsive.jqueryui.css │ │ │ │ └── responsive.jqueryui.min.css │ │ │ └── js │ │ │ │ ├── dataTables.responsive.js │ │ │ │ ├── dataTables.responsive.min.js │ │ │ │ ├── responsive.bootstrap.js │ │ │ │ ├── responsive.bootstrap.min.js │ │ │ │ ├── responsive.foundation.js │ │ │ │ ├── responsive.foundation.min.js │ │ │ │ ├── responsive.jqueryui.js │ │ │ │ └── responsive.jqueryui.min.js │ │ ├── Select-1.2.0 │ │ │ ├── css │ │ │ │ ├── select.bootstrap.css │ │ │ │ ├── select.bootstrap.min.css │ │ │ │ ├── select.dataTables.css │ │ │ │ ├── select.dataTables.min.css │ │ │ │ ├── select.foundation.css │ │ │ │ ├── select.foundation.min.css │ │ │ │ ├── select.jqueryui.css │ │ │ │ └── select.jqueryui.min.css │ │ │ └── js │ │ │ │ ├── dataTables.select.js │ │ │ │ └── dataTables.select.min.js │ │ ├── datatables.css │ │ ├── datatables.js │ │ ├── datatables.min.css │ │ ├── datatables.min.js │ │ ├── jQuery-2.2.4 │ │ │ ├── jquery-2.2.4.js │ │ │ └── jquery-2.2.4.min.js │ │ └── pdfmake-0.1.18 │ │ │ └── build │ │ │ ├── pdfmake.js │ │ │ ├── pdfmake.min.js │ │ │ └── vfs_fonts.js │ ├── amcharts │ │ ├── amcharts.js │ │ ├── funnel.js │ │ ├── gantt.js │ │ ├── gauge.js │ │ ├── images │ │ │ ├── dragIcon.gif │ │ │ ├── dragIconBlack.gif │ │ │ ├── dragIconH.gif │ │ │ ├── dragIconHBlack.gif │ │ │ ├── dragIconRectBig.png │ │ │ ├── dragIconRectBig.svg │ │ │ ├── dragIconRectBigBlack.png │ │ │ ├── dragIconRectBigBlack.svg │ │ │ ├── dragIconRectBigBlackH.png │ │ │ ├── dragIconRectBigBlackH.svg │ │ │ ├── dragIconRectBigH.png │ │ │ ├── dragIconRectBigH.svg │ │ │ ├── dragIconRectSmall.png │ │ │ ├── dragIconRectSmall.svg │ │ │ ├── dragIconRectSmallBlack.png │ │ │ ├── dragIconRectSmallBlack.svg │ │ │ ├── dragIconRectSmallBlackH.png │ │ │ ├── dragIconRectSmallBlackH.svg │ │ │ ├── dragIconRectSmallH.png │ │ │ ├── dragIconRectSmallH.svg │ │ │ ├── dragIconRoundBig.png │ │ │ ├── dragIconRoundBig.svg │ │ │ ├── dragIconRoundBigBlack.png │ │ │ ├── dragIconRoundBigBlack.svg │ │ │ ├── dragIconRoundBigBlackH.png │ │ │ ├── dragIconRoundBigBlackH.svg │ │ │ ├── dragIconRoundBigH.png │ │ │ ├── dragIconRoundBigH.svg │ │ │ ├── dragIconRoundSmall.png │ │ │ ├── dragIconRoundSmall.svg │ │ │ ├── dragIconRoundSmallBlack.png │ │ │ ├── dragIconRoundSmallBlack.svg │ │ │ ├── dragIconRoundSmallBlackH.png │ │ │ ├── dragIconRoundSmallBlackH.svg │ │ │ ├── dragIconRoundSmallH.png │ │ │ ├── dragIconRoundSmallH.svg │ │ │ ├── eraserIcon.svg │ │ │ ├── eraserIconH.svg │ │ │ ├── export.png │ │ │ ├── exportWhite.png │ │ │ ├── lens.png │ │ │ ├── lens.svg │ │ │ ├── lensWhite.png │ │ │ ├── lensWhite.svg │ │ │ ├── lensWhite_old.png │ │ │ ├── lens_old.png │ │ │ ├── pencilIcon.svg │ │ │ ├── pencilIconH.svg │ │ │ ├── xIcon.svg │ │ │ └── xIconH.svg │ │ ├── lang │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── cs.js │ │ │ ├── de.js │ │ │ ├── es.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── mt.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── rw.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── so.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ └── zh.js │ │ ├── patterns │ │ │ ├── black │ │ │ │ ├── pattern1.png │ │ │ │ ├── pattern10.png │ │ │ │ ├── pattern11.png │ │ │ │ ├── pattern12.png │ │ │ │ ├── pattern13.png │ │ │ │ ├── pattern14.png │ │ │ │ ├── pattern15.png │ │ │ │ ├── pattern16.png │ │ │ │ ├── pattern17.png │ │ │ │ ├── pattern18.png │ │ │ │ ├── pattern19.png │ │ │ │ ├── pattern2.png │ │ │ │ ├── pattern20.png │ │ │ │ ├── pattern21.png │ │ │ │ ├── pattern3.png │ │ │ │ ├── pattern4.png │ │ │ │ ├── pattern5.png │ │ │ │ ├── pattern6.png │ │ │ │ ├── pattern7.png │ │ │ │ ├── pattern8.png │ │ │ │ └── pattern9.png │ │ │ ├── chalk │ │ │ │ ├── pattern1.jpg │ │ │ │ ├── pattern1r.jpg │ │ │ │ ├── pattern2.jpg │ │ │ │ ├── pattern3.jpg │ │ │ │ ├── pattern4.jpg │ │ │ │ ├── pattern5.jpg │ │ │ │ └── pattern6.jpg │ │ │ └── white │ │ │ │ ├── pattern1.png │ │ │ │ ├── pattern10.png │ │ │ │ ├── pattern11.png │ │ │ │ ├── pattern12.png │ │ │ │ ├── pattern13.png │ │ │ │ ├── pattern14.png │ │ │ │ ├── pattern15.png │ │ │ │ ├── pattern16.png │ │ │ │ ├── pattern17.png │ │ │ │ ├── pattern18.png │ │ │ │ ├── pattern19.png │ │ │ │ ├── pattern2.png │ │ │ │ ├── pattern20.png │ │ │ │ ├── pattern21.png │ │ │ │ ├── pattern3.png │ │ │ │ ├── pattern4.png │ │ │ │ ├── pattern5.png │ │ │ │ ├── pattern6.png │ │ │ │ ├── pattern7.png │ │ │ │ ├── pattern8.png │ │ │ │ └── pattern9.png │ │ ├── pie.js │ │ ├── plugins │ │ │ ├── animate │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── animate.js │ │ │ │ ├── animate.min.js │ │ │ │ ├── bower.json │ │ │ │ ├── examples │ │ │ │ │ ├── funnel.html │ │ │ │ │ ├── pie.html │ │ │ │ │ ├── radar.html │ │ │ │ │ ├── serial_column.html │ │ │ │ │ ├── serial_line.html │ │ │ │ │ └── xy.html │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── dataloader │ │ │ │ ├── bower.json │ │ │ │ ├── dataloader.js │ │ │ │ ├── dataloader.min.js │ │ │ │ ├── examples │ │ │ │ │ ├── data │ │ │ │ │ │ ├── MSFT.csv │ │ │ │ │ │ ├── MSFT_events.csv │ │ │ │ │ │ ├── TXN.csv │ │ │ │ │ │ ├── gantt.json │ │ │ │ │ │ ├── gauge.json │ │ │ │ │ │ ├── map.json │ │ │ │ │ │ ├── map_areas.json │ │ │ │ │ │ ├── pie.csv │ │ │ │ │ │ ├── pie.json │ │ │ │ │ │ ├── serial.csv │ │ │ │ │ │ ├── serial.json │ │ │ │ │ │ └── serial2.json │ │ │ │ │ ├── gantt_json.html │ │ │ │ │ ├── gauge_json.html │ │ │ │ │ ├── map_json.html │ │ │ │ │ ├── map_json_external_function.html │ │ │ │ │ ├── pie_csv.html │ │ │ │ │ ├── pie_json.html │ │ │ │ │ ├── serial2_json.html │ │ │ │ │ ├── serial_csv.html │ │ │ │ │ ├── serial_json.html │ │ │ │ │ ├── serial_with_dynamic_graphs.html │ │ │ │ │ ├── stock_csv_data_and_events.html │ │ │ │ │ └── stock_csv_progressbar.html │ │ │ │ ├── index.js │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── fr.js │ │ │ │ │ └── lt.js │ │ │ │ ├── license.txt │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── export │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── examples │ │ │ │ │ ├── advanced.html │ │ │ │ │ ├── export.config.advanced.js │ │ │ │ │ ├── export.config.default.js │ │ │ │ │ ├── funnel.html │ │ │ │ │ ├── gantt.html │ │ │ │ │ ├── gauge.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bicycle.png │ │ │ │ │ │ ├── car.png │ │ │ │ │ │ └── motorcycle.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── map.html │ │ │ │ │ ├── pie1.html │ │ │ │ │ ├── pie2.html │ │ │ │ │ ├── pie3.html │ │ │ │ │ ├── pie4.html │ │ │ │ │ ├── radar.html │ │ │ │ │ ├── serial1.html │ │ │ │ │ ├── serial2.html │ │ │ │ │ ├── serial3.html │ │ │ │ │ ├── stock.html │ │ │ │ │ └── xy.html │ │ │ │ ├── export.css │ │ │ │ ├── export.js │ │ │ │ ├── export.min.js │ │ │ │ ├── index.js │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── tr.js │ │ │ │ │ └── zh.js │ │ │ │ ├── libs │ │ │ │ │ ├── FileSaver.js │ │ │ │ │ │ ├── FileSaver.js │ │ │ │ │ │ └── FileSaver.min.js │ │ │ │ │ ├── blob.js │ │ │ │ │ │ └── blob.js │ │ │ │ │ ├── fabric.js │ │ │ │ │ │ ├── fabric.js │ │ │ │ │ │ └── fabric.min.js │ │ │ │ │ ├── jszip │ │ │ │ │ │ ├── jszip.js │ │ │ │ │ │ └── jszip.min.js │ │ │ │ │ ├── pdfmake │ │ │ │ │ │ ├── pdfmake.js │ │ │ │ │ │ ├── pdfmake.min.js │ │ │ │ │ │ ├── pdfmake.min.js.map │ │ │ │ │ │ └── vfs_fonts.js │ │ │ │ │ └── xlsx │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── xlsx.js │ │ │ │ │ │ ├── xlsx.min.js │ │ │ │ │ │ └── xlsx.min.map │ │ │ │ ├── package.json │ │ │ │ └── shapes │ │ │ │ │ ├── 1.svg │ │ │ │ │ ├── 10.svg │ │ │ │ │ ├── 11.svg │ │ │ │ │ ├── 12.svg │ │ │ │ │ ├── 13.svg │ │ │ │ │ ├── 14.svg │ │ │ │ │ ├── 15.svg │ │ │ │ │ ├── 16.svg │ │ │ │ │ ├── 17.svg │ │ │ │ │ ├── 18.svg │ │ │ │ │ ├── 19.svg │ │ │ │ │ ├── 2.svg │ │ │ │ │ ├── 20.svg │ │ │ │ │ ├── 21.svg │ │ │ │ │ ├── 22.svg │ │ │ │ │ ├── 23.svg │ │ │ │ │ ├── 24.svg │ │ │ │ │ ├── 25.svg │ │ │ │ │ ├── 26.svg │ │ │ │ │ ├── 27.svg │ │ │ │ │ ├── 28.svg │ │ │ │ │ ├── 29.svg │ │ │ │ │ ├── 3.svg │ │ │ │ │ ├── 30.svg │ │ │ │ │ ├── 31.svg │ │ │ │ │ ├── 4.svg │ │ │ │ │ ├── 5.svg │ │ │ │ │ ├── 6.svg │ │ │ │ │ ├── 7.svg │ │ │ │ │ ├── 8.svg │ │ │ │ │ └── 9.svg │ │ │ └── responsive │ │ │ │ ├── bower.json │ │ │ │ ├── examples │ │ │ │ ├── funnel.html │ │ │ │ ├── gantt.html │ │ │ │ ├── gauge.html │ │ │ │ ├── images │ │ │ │ │ ├── bicycle.png │ │ │ │ │ ├── car.png │ │ │ │ │ └── motorcycle.png │ │ │ │ ├── index.html │ │ │ │ ├── map.html │ │ │ │ ├── pie1.html │ │ │ │ ├── pie2.html │ │ │ │ ├── pie3.html │ │ │ │ ├── radar.html │ │ │ │ ├── serial1.html │ │ │ │ ├── serial2.html │ │ │ │ ├── serial3.html │ │ │ │ ├── stock.html │ │ │ │ └── xy.html │ │ │ │ ├── index.js │ │ │ │ ├── license.txt │ │ │ │ ├── package.json │ │ │ │ ├── readme.md │ │ │ │ ├── responsive.js │ │ │ │ ├── responsive.min.js │ │ │ │ └── responsive.min.js.map │ │ ├── radar.js │ │ ├── serial.js │ │ ├── themes │ │ │ ├── black.js │ │ │ ├── chalk.js │ │ │ ├── dark.js │ │ │ ├── light.js │ │ │ └── patterns.js │ │ └── xy.js │ ├── bar-chart.js │ ├── bar-chart.min.js │ ├── bootstrap-confirmation │ │ ├── bootstrap-confirmation.js │ │ └── bootstrap-confirmation.min.js │ ├── bootstrap-growl │ │ ├── jquery.bootstrap-growl.js │ │ └── jquery.bootstrap-growl.min.js │ ├── bootstrap-session-timeout │ │ ├── bootstrap-session-timeout.js │ │ └── bootstrap-session-timeout.min.js │ ├── bootstrap-switch │ │ ├── bootstrap-switch.js │ │ └── bootstrap-switch.min.js │ ├── bootstrap │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── ckeditor │ │ ├── .DS_Store │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ ├── copyformatting │ │ │ │ ├── cursors │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ └── cursor.svg │ │ │ │ └── styles │ │ │ │ │ └── copyformatting.css │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── wsc.css │ │ ├── samples │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── datafiltering.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── tabindex.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── css │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ ├── toolbarmodifier.js │ │ │ │ └── toolbartextmodifier.js │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ ├── .DS_Store │ │ │ └── moono-lisa │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ └── styles.js │ ├── counterUp │ │ ├── jquery.counterup.js │ │ └── jquery.counterup.min.js │ ├── dropzone │ │ ├── dropzone.js │ │ └── dropzone.min.js │ ├── form-validator │ │ ├── brazil.js │ │ ├── date.js │ │ ├── file.js │ │ ├── html5.js │ │ ├── jquery.form-validator.js │ │ ├── jquery.form-validator.min.js │ │ ├── jsconf.js │ │ ├── lang │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── es.js │ │ │ ├── fa.js │ │ │ ├── fr.js │ │ │ ├── it.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sv.js │ │ │ └── vi.js │ │ ├── location.js │ │ ├── logic.js │ │ ├── poland.js │ │ ├── sanitize.js │ │ ├── security.js │ │ ├── sepa.js │ │ ├── sweden.js │ │ ├── theme-default.css │ │ ├── theme-default.min.css │ │ ├── toggleDisabled.js │ │ └── uk.js │ ├── icheck │ │ ├── .DS_Store │ │ ├── icheck.js │ │ └── icheck.min.js │ ├── iscroll │ │ └── iscroll.js │ ├── iziModal │ │ ├── LICENSE │ │ ├── iziModal.js │ │ └── iziModal.min.js │ ├── jquery-steps │ │ ├── jquery.steps.js │ │ └── jquery.steps.min.js │ ├── jquery-ui │ │ ├── jquery-ui.js │ │ └── jquery-ui.min.js │ ├── jquery-validate │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ ├── jquery │ │ ├── jquery-2.2.4.js │ │ └── jquery-2.2.4.min.js │ ├── ladda │ │ ├── .DS_Store │ │ ├── ladda.min.js │ │ └── spin.min.js │ ├── lobipanel │ │ ├── lobipanel.js │ │ └── lobipanel.min.js │ ├── main.js │ ├── main.min.js │ ├── mockjax │ │ ├── demo-mock.js │ │ └── jquery.mockjax.js │ ├── modernizr │ │ ├── modernizr.js │ │ └── modernizr.min.js │ ├── moment │ │ ├── moment.js │ │ └── moment.min.js │ ├── pace │ │ └── pace.min.js │ ├── pie-chart.js │ ├── pie-chart.min.js │ ├── pnotify │ │ └── pnotify.custom.min.js │ ├── prism │ │ ├── prism-line-numbers.js │ │ ├── prism.js │ │ └── prism.min.js │ ├── production-chart.js │ ├── production-chart.min.js │ ├── select2 │ │ ├── select2.js │ │ └── select2.min.js │ ├── slimScroll │ │ ├── jquery.slimscroll.js │ │ └── jquery.slimscroll.min.js │ ├── smoothscroll │ │ ├── smooth-scroll.js │ │ └── smooth-scroll.min.js │ ├── summernote │ │ ├── .DS_Store │ │ ├── plugin │ │ │ ├── databasic │ │ │ │ ├── summernote-ext-databasic.css │ │ │ │ └── summernote-ext-databasic.js │ │ │ ├── hello │ │ │ │ └── summernote-ext-hello.js │ │ │ └── specialchars │ │ │ │ └── summernote-ext-specialchars.js │ │ ├── summernote.js │ │ └── summernote.min.js │ ├── sweet-alert │ │ ├── .DS_Store │ │ └── sweetalert.min.js │ ├── switchery │ │ ├── switchery.js │ │ └── switchery.min.js │ ├── tagify │ │ ├── jQuery.tagify.js │ │ └── jQuery.tagify.min.js │ ├── tags │ │ └── jquery.tagsinput.min.js │ ├── task-list.js │ ├── task-list.min.js │ ├── toastr │ │ ├── toastr.js │ │ └── toastr.min.js │ ├── traffic-chart.js │ ├── traffic-chart.min.js │ ├── waypoint │ │ └── waypoints.min.js │ └── x-editable │ │ ├── .DS_Store │ │ ├── bootstrap-editable.js │ │ ├── bootstrap-editable.min.js │ │ └── demo.js └── sass │ ├── .DS_Store │ ├── _color-classes.scss │ ├── _helpers.scss │ ├── bootstrap-sass │ ├── .DS_Store │ ├── _bootstrap-compass.scss │ ├── _bootstrap-mincer.scss │ ├── _bootstrap-sprockets.scss │ ├── _bootstrap.scss │ └── bootstrap │ │ ├── _alerts.scss │ │ ├── _badges.scss │ │ ├── _breadcrumbs.scss │ │ ├── _button-groups.scss │ │ ├── _buttons.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _component-animations.scss │ │ ├── _dropdowns.scss │ │ ├── _forms.scss │ │ ├── _glyphicons.scss │ │ ├── _grid.scss │ │ ├── _input-groups.scss │ │ ├── _jumbotron.scss │ │ ├── _labels.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modals.scss │ │ ├── _navbar.scss │ │ ├── _navs.scss │ │ ├── _normalize.scss │ │ ├── _pager.scss │ │ ├── _pagination.scss │ │ ├── _panels.scss │ │ ├── _popovers.scss │ │ ├── _print.scss │ │ ├── _progress-bars.scss │ │ ├── _responsive-embed.scss │ │ ├── _responsive-utilities.scss │ │ ├── _scaffolding.scss │ │ ├── _tables.scss │ │ ├── _theme.scss │ │ ├── _thumbnails.scss │ │ ├── _tooltip.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── _wells.scss │ │ └── mixins │ │ ├── _alerts.scss │ │ ├── _background-variant.scss │ │ ├── _border-radius.scss │ │ ├── _buttons.scss │ │ ├── _center-block.scss │ │ ├── _clearfix.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hide-text.scss │ │ ├── _image.scss │ │ ├── _labels.scss │ │ ├── _list-group.scss │ │ ├── _nav-divider.scss │ │ ├── _nav-vertical-align.scss │ │ ├── _opacity.scss │ │ ├── _pagination.scss │ │ ├── _panels.scss │ │ ├── _progress-bar.scss │ │ ├── _reset-filter.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _responsive-visibility.scss │ │ ├── _size.scss │ │ ├── _tab-focus.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-overflow.scss │ │ └── _vendor-prefixes.scss │ ├── bootstrap.scss │ ├── bourbon │ ├── _bourbon-deprecated-upcoming.scss │ ├── _bourbon.scss │ ├── addons │ │ ├── _border-color.scss │ │ ├── _border-radius.scss │ │ ├── _border-style.scss │ │ ├── _border-width.scss │ │ ├── _buttons.scss │ │ ├── _clearfix.scss │ │ ├── _ellipsis.scss │ │ ├── _font-stacks.scss │ │ ├── _hide-text.scss │ │ ├── _margin.scss │ │ ├── _padding.scss │ │ ├── _position.scss │ │ ├── _prefixer.scss │ │ ├── _retina-image.scss │ │ ├── _size.scss │ │ ├── _text-inputs.scss │ │ ├── _timing-functions.scss │ │ ├── _triangle.scss │ │ └── _word-wrap.scss │ ├── css3 │ │ ├── _animation.scss │ │ ├── _appearance.scss │ │ ├── _backface-visibility.scss │ │ ├── _background-image.scss │ │ ├── _background.scss │ │ ├── _border-image.scss │ │ ├── _calc.scss │ │ ├── _columns.scss │ │ ├── _filter.scss │ │ ├── _flex-box.scss │ │ ├── _font-face.scss │ │ ├── _font-feature-settings.scss │ │ ├── _hidpi-media-query.scss │ │ ├── _hyphens.scss │ │ ├── _image-rendering.scss │ │ ├── _keyframes.scss │ │ ├── _linear-gradient.scss │ │ ├── _perspective.scss │ │ ├── _placeholder.scss │ │ ├── _radial-gradient.scss │ │ ├── _selection.scss │ │ ├── _text-decoration.scss │ │ ├── _transform.scss │ │ ├── _transition.scss │ │ └── _user-select.scss │ ├── functions │ │ ├── _assign-inputs.scss │ │ ├── _contains-falsy.scss │ │ ├── _contains.scss │ │ ├── _is-length.scss │ │ ├── _is-light.scss │ │ ├── _is-number.scss │ │ ├── _is-size.scss │ │ ├── _modular-scale.scss │ │ ├── _px-to-em.scss │ │ ├── _px-to-rem.scss │ │ ├── _shade.scss │ │ ├── _strip-units.scss │ │ ├── _tint.scss │ │ ├── _transition-property-name.scss │ │ └── _unpack.scss │ ├── helpers │ │ ├── _convert-units.scss │ │ ├── _directional-values.scss │ │ ├── _font-source-declaration.scss │ │ ├── _gradient-positions-parser.scss │ │ ├── _linear-angle-parser.scss │ │ ├── _linear-gradient-parser.scss │ │ ├── _linear-positions-parser.scss │ │ ├── _linear-side-corner-parser.scss │ │ ├── _radial-arg-parser.scss │ │ ├── _radial-gradient-parser.scss │ │ ├── _radial-positions-parser.scss │ │ ├── _render-gradients.scss │ │ ├── _shape-size-stripper.scss │ │ └── _str-to-num.scss │ └── settings │ │ ├── _asset-pipeline.scss │ │ ├── _prefixer.scss │ │ └── _px-to-em.scss │ ├── main.scss │ └── typographic │ └── typographic.scss ├── static_cdn ├── admin │ ├── css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── responsive.css │ │ ├── responsive_rtl.css │ │ ├── rtl.css │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ └── widgets.css │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── actions.min.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── autocomplete.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── collapse.min.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── inlines.min.js │ │ ├── jquery.init.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate.min.js │ │ ├── prepopulate_init.js │ │ ├── timeparse.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── select2 │ │ ├── LICENSE.md │ │ ├── i18n │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js ├── css │ ├── animate-css │ │ └── animate.min.css │ ├── bootstrap-switch │ │ ├── bootstrap-switch.css │ │ └── bootstrap-switch.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── ckeditor │ │ └── skins │ │ │ └── moono-lisa │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── spinner.gif │ │ │ └── readme.md │ ├── dropzone │ │ ├── dropzone.css │ │ └── dropzone.min.css │ ├── font-awesome.css │ ├── font-awesome.min.css │ ├── icheck │ │ └── skins │ │ │ ├── all.css │ │ │ ├── flat │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── flat.css │ │ │ ├── flat.png │ │ │ ├── flat@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ ├── futurico.css │ │ │ ├── futurico.png │ │ │ └── futurico@2x.png │ │ │ ├── line │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── green.css │ │ │ ├── grey.css │ │ │ ├── line.css │ │ │ ├── line.png │ │ │ ├── line@2x.png │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.css │ │ │ ├── minimal.png │ │ │ ├── minimal@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ ├── polaris.css │ │ │ ├── polaris.png │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── square.css │ │ │ ├── square.png │ │ │ ├── square@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ ├── iziModal │ │ ├── LICENSE │ │ ├── iziModal.css │ │ └── iziModal.min.css │ ├── jquery-steps │ │ └── jquery.steps.css │ ├── jquery-ui │ │ ├── jquery-ui.css │ │ └── jquery-ui.min.css │ ├── ladda │ │ ├── ladda-themeless.css │ │ └── ladda-themeless.min.css │ ├── lobipanel │ │ ├── lobipanel.css │ │ └── lobipanel.min.css │ ├── main.css │ ├── main.min.css │ ├── pace │ │ ├── pace-barber.css │ │ ├── pace-bounce.css │ │ ├── pace-center-atom.css │ │ ├── pace-center-circle.css │ │ ├── pace-center-radar.css │ │ ├── pace-center-simple.css │ │ ├── pace-corner.css │ │ ├── pace-counter.css │ │ ├── pace-fill-left.css │ │ ├── pace-flash.css │ │ ├── pace-loading-bar.css │ │ ├── pace-mac.css │ │ └── pace-minimal.css │ ├── pnotify │ │ └── pnotify.custom.min.css │ ├── prism │ │ └── prism.css │ ├── select2 │ │ ├── select2.css │ │ └── select2.min.css │ ├── summernote │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ └── summernote.css │ ├── sweet-alert │ │ └── sweetalert.css │ ├── switchery │ │ ├── switchery.css │ │ └── switchery.min.css │ ├── tagify │ │ └── tagify.css │ ├── tags │ │ └── jquery.tagsinput.min.css │ ├── toastr │ │ ├── toastr.css │ │ └── toastr.min.css │ └── x-editable │ │ ├── css │ │ └── bootstrap-editable.css │ │ └── img │ │ ├── clear.png │ │ └── loading.gif ├── fonts │ ├── FontAwesome.otf │ ├── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── images │ ├── avatar-1.svg │ ├── logo-dark.svg │ ├── logo-light.svg │ ├── photo-1.jpg │ ├── photo-2.jpg │ ├── profile.jpg │ ├── sample.jpg │ └── thumbs-up-icon.png ├── js │ ├── DataTables │ │ ├── Bootstrap-3.3.7 │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── Buttons-1.2.4 │ │ │ ├── css │ │ │ │ ├── buttons.bootstrap.css │ │ │ │ ├── buttons.bootstrap.min.css │ │ │ │ ├── buttons.dataTables.css │ │ │ │ ├── buttons.dataTables.min.css │ │ │ │ ├── buttons.foundation.css │ │ │ │ ├── buttons.foundation.min.css │ │ │ │ ├── buttons.jqueryui.css │ │ │ │ ├── buttons.jqueryui.min.css │ │ │ │ ├── buttons.semanticui.css │ │ │ │ ├── buttons.semanticui.min.css │ │ │ │ ├── common.scss │ │ │ │ └── mixins.scss │ │ │ ├── js │ │ │ │ ├── buttons.bootstrap.js │ │ │ │ ├── buttons.bootstrap.min.js │ │ │ │ ├── buttons.colVis.js │ │ │ │ ├── buttons.colVis.min.js │ │ │ │ ├── buttons.flash.js │ │ │ │ ├── buttons.flash.min.js │ │ │ │ ├── buttons.foundation.js │ │ │ │ ├── buttons.foundation.min.js │ │ │ │ ├── buttons.html5.js │ │ │ │ ├── buttons.html5.min.js │ │ │ │ ├── buttons.jqueryui.js │ │ │ │ ├── buttons.jqueryui.min.js │ │ │ │ ├── buttons.print.js │ │ │ │ ├── buttons.print.min.js │ │ │ │ ├── buttons.semanticui.js │ │ │ │ ├── buttons.semanticui.min.js │ │ │ │ ├── dataTables.buttons.js │ │ │ │ └── dataTables.buttons.min.js │ │ │ └── swf │ │ │ │ └── flashExport.swf │ │ ├── ColReorder-1.3.2 │ │ │ ├── css │ │ │ │ ├── colReorder.bootstrap.css │ │ │ │ ├── colReorder.bootstrap.min.css │ │ │ │ ├── colReorder.dataTables.css │ │ │ │ ├── colReorder.dataTables.min.css │ │ │ │ ├── colReorder.foundation.css │ │ │ │ ├── colReorder.foundation.min.css │ │ │ │ ├── colReorder.jqueryui.css │ │ │ │ └── colReorder.jqueryui.min.css │ │ │ └── js │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ └── dataTables.colReorder.min.js │ │ ├── DataTables-1.10.13 │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ ├── dataTables.bootstrap.min.css │ │ │ │ ├── dataTables.foundation.css │ │ │ │ ├── dataTables.foundation.min.css │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ ├── dataTables.jqueryui.min.css │ │ │ │ ├── dataTables.semanticui.css │ │ │ │ ├── dataTables.semanticui.min.css │ │ │ │ ├── jquery.dataTables.css │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ ├── dataTables.foundation.js │ │ │ │ ├── dataTables.foundation.min.js │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ ├── dataTables.jqueryui.min.js │ │ │ │ ├── dataTables.semanticui.js │ │ │ │ ├── dataTables.semanticui.min.js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ └── jquery.dataTables.min.js │ │ ├── FixedColumns-3.2.2 │ │ │ ├── css │ │ │ │ ├── fixedColumns.bootstrap.css │ │ │ │ ├── fixedColumns.bootstrap.min.css │ │ │ │ ├── fixedColumns.dataTables.css │ │ │ │ ├── fixedColumns.dataTables.min.css │ │ │ │ ├── fixedColumns.foundation.css │ │ │ │ ├── fixedColumns.foundation.min.css │ │ │ │ ├── fixedColumns.jqueryui.css │ │ │ │ └── fixedColumns.jqueryui.min.css │ │ │ └── js │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ └── dataTables.fixedColumns.min.js │ │ ├── FixedHeader-3.1.2 │ │ │ ├── css │ │ │ │ ├── fixedHeader.bootstrap.css │ │ │ │ ├── fixedHeader.bootstrap.min.css │ │ │ │ ├── fixedHeader.dataTables.css │ │ │ │ ├── fixedHeader.dataTables.min.css │ │ │ │ ├── fixedHeader.foundation.css │ │ │ │ ├── fixedHeader.foundation.min.css │ │ │ │ ├── fixedHeader.jqueryui.css │ │ │ │ └── fixedHeader.jqueryui.min.css │ │ │ └── js │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ └── dataTables.fixedHeader.min.js │ │ ├── JSZip-2.5.0 │ │ │ ├── jszip.js │ │ │ └── jszip.min.js │ │ ├── Responsive-2.1.1 │ │ │ ├── css │ │ │ │ ├── responsive.bootstrap.css │ │ │ │ ├── responsive.bootstrap.min.css │ │ │ │ ├── responsive.dataTables.css │ │ │ │ ├── responsive.dataTables.min.css │ │ │ │ ├── responsive.foundation.css │ │ │ │ ├── responsive.foundation.min.css │ │ │ │ ├── responsive.jqueryui.css │ │ │ │ └── responsive.jqueryui.min.css │ │ │ └── js │ │ │ │ ├── dataTables.responsive.js │ │ │ │ ├── dataTables.responsive.min.js │ │ │ │ ├── responsive.bootstrap.js │ │ │ │ ├── responsive.bootstrap.min.js │ │ │ │ ├── responsive.foundation.js │ │ │ │ ├── responsive.foundation.min.js │ │ │ │ ├── responsive.jqueryui.js │ │ │ │ └── responsive.jqueryui.min.js │ │ ├── Select-1.2.0 │ │ │ ├── css │ │ │ │ ├── select.bootstrap.css │ │ │ │ ├── select.bootstrap.min.css │ │ │ │ ├── select.dataTables.css │ │ │ │ ├── select.dataTables.min.css │ │ │ │ ├── select.foundation.css │ │ │ │ ├── select.foundation.min.css │ │ │ │ ├── select.jqueryui.css │ │ │ │ └── select.jqueryui.min.css │ │ │ └── js │ │ │ │ ├── dataTables.select.js │ │ │ │ └── dataTables.select.min.js │ │ ├── datatables.css │ │ ├── datatables.js │ │ ├── datatables.min.css │ │ ├── datatables.min.js │ │ ├── jQuery-2.2.4 │ │ │ ├── jquery-2.2.4.js │ │ │ └── jquery-2.2.4.min.js │ │ └── pdfmake-0.1.18 │ │ │ └── build │ │ │ ├── pdfmake.js │ │ │ ├── pdfmake.min.js │ │ │ └── vfs_fonts.js │ ├── amcharts │ │ ├── amcharts.js │ │ ├── funnel.js │ │ ├── gantt.js │ │ ├── gauge.js │ │ ├── images │ │ │ ├── dragIcon.gif │ │ │ ├── dragIconBlack.gif │ │ │ ├── dragIconH.gif │ │ │ ├── dragIconHBlack.gif │ │ │ ├── dragIconRectBig.png │ │ │ ├── dragIconRectBig.svg │ │ │ ├── dragIconRectBigBlack.png │ │ │ ├── dragIconRectBigBlack.svg │ │ │ ├── dragIconRectBigBlackH.png │ │ │ ├── dragIconRectBigBlackH.svg │ │ │ ├── dragIconRectBigH.png │ │ │ ├── dragIconRectBigH.svg │ │ │ ├── dragIconRectSmall.png │ │ │ ├── dragIconRectSmall.svg │ │ │ ├── dragIconRectSmallBlack.png │ │ │ ├── dragIconRectSmallBlack.svg │ │ │ ├── dragIconRectSmallBlackH.png │ │ │ ├── dragIconRectSmallBlackH.svg │ │ │ ├── dragIconRectSmallH.png │ │ │ ├── dragIconRectSmallH.svg │ │ │ ├── dragIconRoundBig.png │ │ │ ├── dragIconRoundBig.svg │ │ │ ├── dragIconRoundBigBlack.png │ │ │ ├── dragIconRoundBigBlack.svg │ │ │ ├── dragIconRoundBigBlackH.png │ │ │ ├── dragIconRoundBigBlackH.svg │ │ │ ├── dragIconRoundBigH.png │ │ │ ├── dragIconRoundBigH.svg │ │ │ ├── dragIconRoundSmall.png │ │ │ ├── dragIconRoundSmall.svg │ │ │ ├── dragIconRoundSmallBlack.png │ │ │ ├── dragIconRoundSmallBlack.svg │ │ │ ├── dragIconRoundSmallBlackH.png │ │ │ ├── dragIconRoundSmallBlackH.svg │ │ │ ├── dragIconRoundSmallH.png │ │ │ ├── dragIconRoundSmallH.svg │ │ │ ├── eraserIcon.svg │ │ │ ├── eraserIconH.svg │ │ │ ├── export.png │ │ │ ├── exportWhite.png │ │ │ ├── lens.png │ │ │ ├── lens.svg │ │ │ ├── lensWhite.png │ │ │ ├── lensWhite.svg │ │ │ ├── lensWhite_old.png │ │ │ ├── lens_old.png │ │ │ ├── pencilIcon.svg │ │ │ ├── pencilIconH.svg │ │ │ ├── xIcon.svg │ │ │ └── xIconH.svg │ │ ├── lang │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── cs.js │ │ │ ├── de.js │ │ │ ├── es.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── mt.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── rw.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── so.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ └── zh.js │ │ ├── patterns │ │ │ ├── black │ │ │ │ ├── pattern1.png │ │ │ │ ├── pattern10.png │ │ │ │ ├── pattern11.png │ │ │ │ ├── pattern12.png │ │ │ │ ├── pattern13.png │ │ │ │ ├── pattern14.png │ │ │ │ ├── pattern15.png │ │ │ │ ├── pattern16.png │ │ │ │ ├── pattern17.png │ │ │ │ ├── pattern18.png │ │ │ │ ├── pattern19.png │ │ │ │ ├── pattern2.png │ │ │ │ ├── pattern20.png │ │ │ │ ├── pattern21.png │ │ │ │ ├── pattern3.png │ │ │ │ ├── pattern4.png │ │ │ │ ├── pattern5.png │ │ │ │ ├── pattern6.png │ │ │ │ ├── pattern7.png │ │ │ │ ├── pattern8.png │ │ │ │ └── pattern9.png │ │ │ ├── chalk │ │ │ │ ├── pattern1.jpg │ │ │ │ ├── pattern1r.jpg │ │ │ │ ├── pattern2.jpg │ │ │ │ ├── pattern3.jpg │ │ │ │ ├── pattern4.jpg │ │ │ │ ├── pattern5.jpg │ │ │ │ └── pattern6.jpg │ │ │ └── white │ │ │ │ ├── pattern1.png │ │ │ │ ├── pattern10.png │ │ │ │ ├── pattern11.png │ │ │ │ ├── pattern12.png │ │ │ │ ├── pattern13.png │ │ │ │ ├── pattern14.png │ │ │ │ ├── pattern15.png │ │ │ │ ├── pattern16.png │ │ │ │ ├── pattern17.png │ │ │ │ ├── pattern18.png │ │ │ │ ├── pattern19.png │ │ │ │ ├── pattern2.png │ │ │ │ ├── pattern20.png │ │ │ │ ├── pattern21.png │ │ │ │ ├── pattern3.png │ │ │ │ ├── pattern4.png │ │ │ │ ├── pattern5.png │ │ │ │ ├── pattern6.png │ │ │ │ ├── pattern7.png │ │ │ │ ├── pattern8.png │ │ │ │ └── pattern9.png │ │ ├── pie.js │ │ ├── plugins │ │ │ ├── animate │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── animate.js │ │ │ │ ├── animate.min.js │ │ │ │ ├── bower.json │ │ │ │ ├── examples │ │ │ │ │ ├── funnel.html │ │ │ │ │ ├── pie.html │ │ │ │ │ ├── radar.html │ │ │ │ │ ├── serial_column.html │ │ │ │ │ ├── serial_line.html │ │ │ │ │ └── xy.html │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── dataloader │ │ │ │ ├── bower.json │ │ │ │ ├── dataloader.js │ │ │ │ ├── dataloader.min.js │ │ │ │ ├── examples │ │ │ │ │ ├── data │ │ │ │ │ │ ├── MSFT.csv │ │ │ │ │ │ ├── MSFT_events.csv │ │ │ │ │ │ ├── TXN.csv │ │ │ │ │ │ ├── gantt.json │ │ │ │ │ │ ├── gauge.json │ │ │ │ │ │ ├── map.json │ │ │ │ │ │ ├── map_areas.json │ │ │ │ │ │ ├── pie.csv │ │ │ │ │ │ ├── pie.json │ │ │ │ │ │ ├── serial.csv │ │ │ │ │ │ ├── serial.json │ │ │ │ │ │ └── serial2.json │ │ │ │ │ ├── gantt_json.html │ │ │ │ │ ├── gauge_json.html │ │ │ │ │ ├── map_json.html │ │ │ │ │ ├── map_json_external_function.html │ │ │ │ │ ├── pie_csv.html │ │ │ │ │ ├── pie_json.html │ │ │ │ │ ├── serial2_json.html │ │ │ │ │ ├── serial_csv.html │ │ │ │ │ ├── serial_json.html │ │ │ │ │ ├── serial_with_dynamic_graphs.html │ │ │ │ │ ├── stock_csv_data_and_events.html │ │ │ │ │ └── stock_csv_progressbar.html │ │ │ │ ├── index.js │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── fr.js │ │ │ │ │ └── lt.js │ │ │ │ ├── license.txt │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── export │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── examples │ │ │ │ │ ├── advanced.html │ │ │ │ │ ├── export.config.advanced.js │ │ │ │ │ ├── export.config.default.js │ │ │ │ │ ├── funnel.html │ │ │ │ │ ├── gantt.html │ │ │ │ │ ├── gauge.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bicycle.png │ │ │ │ │ │ ├── car.png │ │ │ │ │ │ └── motorcycle.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── map.html │ │ │ │ │ ├── pie1.html │ │ │ │ │ ├── pie2.html │ │ │ │ │ ├── pie3.html │ │ │ │ │ ├── pie4.html │ │ │ │ │ ├── radar.html │ │ │ │ │ ├── serial1.html │ │ │ │ │ ├── serial2.html │ │ │ │ │ ├── serial3.html │ │ │ │ │ ├── stock.html │ │ │ │ │ └── xy.html │ │ │ │ ├── export.css │ │ │ │ ├── export.js │ │ │ │ ├── export.min.js │ │ │ │ ├── index.js │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── tr.js │ │ │ │ │ └── zh.js │ │ │ │ ├── libs │ │ │ │ │ ├── FileSaver.js │ │ │ │ │ │ ├── FileSaver.js │ │ │ │ │ │ └── FileSaver.min.js │ │ │ │ │ ├── blob.js │ │ │ │ │ │ └── blob.js │ │ │ │ │ ├── fabric.js │ │ │ │ │ │ ├── fabric.js │ │ │ │ │ │ └── fabric.min.js │ │ │ │ │ ├── jszip │ │ │ │ │ │ ├── jszip.js │ │ │ │ │ │ └── jszip.min.js │ │ │ │ │ ├── pdfmake │ │ │ │ │ │ ├── pdfmake.js │ │ │ │ │ │ ├── pdfmake.min.js │ │ │ │ │ │ ├── pdfmake.min.js.map │ │ │ │ │ │ └── vfs_fonts.js │ │ │ │ │ └── xlsx │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── xlsx.js │ │ │ │ │ │ ├── xlsx.min.js │ │ │ │ │ │ └── xlsx.min.map │ │ │ │ ├── package.json │ │ │ │ └── shapes │ │ │ │ │ ├── 1.svg │ │ │ │ │ ├── 10.svg │ │ │ │ │ ├── 11.svg │ │ │ │ │ ├── 12.svg │ │ │ │ │ ├── 13.svg │ │ │ │ │ ├── 14.svg │ │ │ │ │ ├── 15.svg │ │ │ │ │ ├── 16.svg │ │ │ │ │ ├── 17.svg │ │ │ │ │ ├── 18.svg │ │ │ │ │ ├── 19.svg │ │ │ │ │ ├── 2.svg │ │ │ │ │ ├── 20.svg │ │ │ │ │ ├── 21.svg │ │ │ │ │ ├── 22.svg │ │ │ │ │ ├── 23.svg │ │ │ │ │ ├── 24.svg │ │ │ │ │ ├── 25.svg │ │ │ │ │ ├── 26.svg │ │ │ │ │ ├── 27.svg │ │ │ │ │ ├── 28.svg │ │ │ │ │ ├── 29.svg │ │ │ │ │ ├── 3.svg │ │ │ │ │ ├── 30.svg │ │ │ │ │ ├── 31.svg │ │ │ │ │ ├── 4.svg │ │ │ │ │ ├── 5.svg │ │ │ │ │ ├── 6.svg │ │ │ │ │ ├── 7.svg │ │ │ │ │ ├── 8.svg │ │ │ │ │ └── 9.svg │ │ │ └── responsive │ │ │ │ ├── bower.json │ │ │ │ ├── examples │ │ │ │ ├── funnel.html │ │ │ │ ├── gantt.html │ │ │ │ ├── gauge.html │ │ │ │ ├── images │ │ │ │ │ ├── bicycle.png │ │ │ │ │ ├── car.png │ │ │ │ │ └── motorcycle.png │ │ │ │ ├── index.html │ │ │ │ ├── map.html │ │ │ │ ├── pie1.html │ │ │ │ ├── pie2.html │ │ │ │ ├── pie3.html │ │ │ │ ├── radar.html │ │ │ │ ├── serial1.html │ │ │ │ ├── serial2.html │ │ │ │ ├── serial3.html │ │ │ │ ├── stock.html │ │ │ │ └── xy.html │ │ │ │ ├── index.js │ │ │ │ ├── license.txt │ │ │ │ ├── package.json │ │ │ │ ├── readme.md │ │ │ │ ├── responsive.js │ │ │ │ ├── responsive.min.js │ │ │ │ └── responsive.min.js.map │ │ ├── radar.js │ │ ├── serial.js │ │ ├── themes │ │ │ ├── black.js │ │ │ ├── chalk.js │ │ │ ├── dark.js │ │ │ ├── light.js │ │ │ └── patterns.js │ │ └── xy.js │ ├── bar-chart.js │ ├── bar-chart.min.js │ ├── bootstrap-confirmation │ │ ├── bootstrap-confirmation.js │ │ └── bootstrap-confirmation.min.js │ ├── bootstrap-growl │ │ ├── jquery.bootstrap-growl.js │ │ └── jquery.bootstrap-growl.min.js │ ├── bootstrap-session-timeout │ │ ├── bootstrap-session-timeout.js │ │ └── bootstrap-session-timeout.min.js │ ├── bootstrap-switch │ │ ├── bootstrap-switch.js │ │ └── bootstrap-switch.min.js │ ├── bootstrap │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ ├── copyformatting │ │ │ │ ├── cursors │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ └── cursor.svg │ │ │ │ └── styles │ │ │ │ │ └── copyformatting.css │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── wsc.css │ │ ├── samples │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── datafiltering.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── tabindex.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── css │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ ├── toolbarmodifier.js │ │ │ │ └── toolbartextmodifier.js │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ └── moono-lisa │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ └── styles.js │ ├── counterUp │ │ ├── jquery.counterup.js │ │ └── jquery.counterup.min.js │ ├── dropzone │ │ ├── dropzone.js │ │ └── dropzone.min.js │ ├── form-validator │ │ ├── brazil.js │ │ ├── date.js │ │ ├── file.js │ │ ├── html5.js │ │ ├── jquery.form-validator.js │ │ ├── jquery.form-validator.min.js │ │ ├── jsconf.js │ │ ├── lang │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── es.js │ │ │ ├── fa.js │ │ │ ├── fr.js │ │ │ ├── it.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sv.js │ │ │ └── vi.js │ │ ├── location.js │ │ ├── logic.js │ │ ├── poland.js │ │ ├── sanitize.js │ │ ├── security.js │ │ ├── sepa.js │ │ ├── sweden.js │ │ ├── theme-default.css │ │ ├── theme-default.min.css │ │ ├── toggleDisabled.js │ │ └── uk.js │ ├── icheck │ │ ├── icheck.js │ │ └── icheck.min.js │ ├── iscroll │ │ └── iscroll.js │ ├── iziModal │ │ ├── LICENSE │ │ ├── iziModal.js │ │ └── iziModal.min.js │ ├── jquery-steps │ │ ├── jquery.steps.js │ │ └── jquery.steps.min.js │ ├── jquery-ui │ │ ├── jquery-ui.js │ │ └── jquery-ui.min.js │ ├── jquery-validate │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ ├── jquery │ │ ├── jquery-2.2.4.js │ │ └── jquery-2.2.4.min.js │ ├── ladda │ │ ├── ladda.min.js │ │ └── spin.min.js │ ├── lobipanel │ │ ├── lobipanel.js │ │ └── lobipanel.min.js │ ├── main.js │ ├── main.min.js │ ├── mockjax │ │ ├── demo-mock.js │ │ └── jquery.mockjax.js │ ├── modernizr │ │ ├── modernizr.js │ │ └── modernizr.min.js │ ├── moment │ │ ├── moment.js │ │ └── moment.min.js │ ├── pace │ │ └── pace.min.js │ ├── pie-chart.js │ ├── pie-chart.min.js │ ├── pnotify │ │ └── pnotify.custom.min.js │ ├── prism │ │ ├── prism-line-numbers.js │ │ ├── prism.js │ │ └── prism.min.js │ ├── production-chart.js │ ├── production-chart.min.js │ ├── select2 │ │ ├── select2.js │ │ └── select2.min.js │ ├── slimScroll │ │ ├── jquery.slimscroll.js │ │ └── jquery.slimscroll.min.js │ ├── smoothscroll │ │ ├── smooth-scroll.js │ │ └── smooth-scroll.min.js │ ├── summernote │ │ ├── plugin │ │ │ ├── databasic │ │ │ │ ├── summernote-ext-databasic.css │ │ │ │ └── summernote-ext-databasic.js │ │ │ ├── hello │ │ │ │ └── summernote-ext-hello.js │ │ │ └── specialchars │ │ │ │ └── summernote-ext-specialchars.js │ │ ├── summernote.js │ │ └── summernote.min.js │ ├── sweet-alert │ │ └── sweetalert.min.js │ ├── switchery │ │ ├── switchery.js │ │ └── switchery.min.js │ ├── tagify │ │ ├── jQuery.tagify.js │ │ └── jQuery.tagify.min.js │ ├── tags │ │ └── jquery.tagsinput.min.js │ ├── task-list.js │ ├── task-list.min.js │ ├── toastr │ │ ├── toastr.js │ │ └── toastr.min.js │ ├── traffic-chart.js │ ├── traffic-chart.min.js │ ├── waypoint │ │ └── waypoints.min.js │ └── x-editable │ │ ├── bootstrap-editable.js │ │ ├── bootstrap-editable.min.js │ │ └── demo.js └── sass │ ├── _color-classes.scss │ ├── _helpers.scss │ ├── bootstrap-sass │ ├── _bootstrap-compass.scss │ ├── _bootstrap-mincer.scss │ ├── _bootstrap-sprockets.scss │ ├── _bootstrap.scss │ └── bootstrap │ │ ├── _alerts.scss │ │ ├── _badges.scss │ │ ├── _breadcrumbs.scss │ │ ├── _button-groups.scss │ │ ├── _buttons.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _component-animations.scss │ │ ├── _dropdowns.scss │ │ ├── _forms.scss │ │ ├── _glyphicons.scss │ │ ├── _grid.scss │ │ ├── _input-groups.scss │ │ ├── _jumbotron.scss │ │ ├── _labels.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modals.scss │ │ ├── _navbar.scss │ │ ├── _navs.scss │ │ ├── _normalize.scss │ │ ├── _pager.scss │ │ ├── _pagination.scss │ │ ├── _panels.scss │ │ ├── _popovers.scss │ │ ├── _print.scss │ │ ├── _progress-bars.scss │ │ ├── _responsive-embed.scss │ │ ├── _responsive-utilities.scss │ │ ├── _scaffolding.scss │ │ ├── _tables.scss │ │ ├── _theme.scss │ │ ├── _thumbnails.scss │ │ ├── _tooltip.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── _wells.scss │ │ └── mixins │ │ ├── _alerts.scss │ │ ├── _background-variant.scss │ │ ├── _border-radius.scss │ │ ├── _buttons.scss │ │ ├── _center-block.scss │ │ ├── _clearfix.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hide-text.scss │ │ ├── _image.scss │ │ ├── _labels.scss │ │ ├── _list-group.scss │ │ ├── _nav-divider.scss │ │ ├── _nav-vertical-align.scss │ │ ├── _opacity.scss │ │ ├── _pagination.scss │ │ ├── _panels.scss │ │ ├── _progress-bar.scss │ │ ├── _reset-filter.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _responsive-visibility.scss │ │ ├── _size.scss │ │ ├── _tab-focus.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-overflow.scss │ │ └── _vendor-prefixes.scss │ ├── bootstrap.scss │ ├── bourbon │ ├── _bourbon-deprecated-upcoming.scss │ ├── _bourbon.scss │ ├── addons │ │ ├── _border-color.scss │ │ ├── _border-radius.scss │ │ ├── _border-style.scss │ │ ├── _border-width.scss │ │ ├── _buttons.scss │ │ ├── _clearfix.scss │ │ ├── _ellipsis.scss │ │ ├── _font-stacks.scss │ │ ├── _hide-text.scss │ │ ├── _margin.scss │ │ ├── _padding.scss │ │ ├── _position.scss │ │ ├── _prefixer.scss │ │ ├── _retina-image.scss │ │ ├── _size.scss │ │ ├── _text-inputs.scss │ │ ├── _timing-functions.scss │ │ ├── _triangle.scss │ │ └── _word-wrap.scss │ ├── css3 │ │ ├── _animation.scss │ │ ├── _appearance.scss │ │ ├── _backface-visibility.scss │ │ ├── _background-image.scss │ │ ├── _background.scss │ │ ├── _border-image.scss │ │ ├── _calc.scss │ │ ├── _columns.scss │ │ ├── _filter.scss │ │ ├── _flex-box.scss │ │ ├── _font-face.scss │ │ ├── _font-feature-settings.scss │ │ ├── _hidpi-media-query.scss │ │ ├── _hyphens.scss │ │ ├── _image-rendering.scss │ │ ├── _keyframes.scss │ │ ├── _linear-gradient.scss │ │ ├── _perspective.scss │ │ ├── _placeholder.scss │ │ ├── _radial-gradient.scss │ │ ├── _selection.scss │ │ ├── _text-decoration.scss │ │ ├── _transform.scss │ │ ├── _transition.scss │ │ └── _user-select.scss │ ├── functions │ │ ├── _assign-inputs.scss │ │ ├── _contains-falsy.scss │ │ ├── _contains.scss │ │ ├── _is-length.scss │ │ ├── _is-light.scss │ │ ├── _is-number.scss │ │ ├── _is-size.scss │ │ ├── _modular-scale.scss │ │ ├── _px-to-em.scss │ │ ├── _px-to-rem.scss │ │ ├── _shade.scss │ │ ├── _strip-units.scss │ │ ├── _tint.scss │ │ ├── _transition-property-name.scss │ │ └── _unpack.scss │ ├── helpers │ │ ├── _convert-units.scss │ │ ├── _directional-values.scss │ │ ├── _font-source-declaration.scss │ │ ├── _gradient-positions-parser.scss │ │ ├── _linear-angle-parser.scss │ │ ├── _linear-gradient-parser.scss │ │ ├── _linear-positions-parser.scss │ │ ├── _linear-side-corner-parser.scss │ │ ├── _radial-arg-parser.scss │ │ ├── _radial-gradient-parser.scss │ │ ├── _radial-positions-parser.scss │ │ ├── _render-gradients.scss │ │ ├── _shape-size-stripper.scss │ │ └── _str-to-num.scss │ └── settings │ │ ├── _asset-pipeline.scss │ │ ├── _prefixer.scss │ │ └── _px-to-em.scss │ ├── main.scss │ └── typographic │ └── typographic.scss ├── student_classes ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── forms.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ └── __init__.cpython-37.pyc ├── models.py ├── templates │ └── student_classes │ │ ├── studentclass_delete.html │ │ ├── studentclass_form.html │ │ └── studentclass_list.html ├── tests.py ├── urls.py └── views.py ├── students ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── forms.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ └── __init__.cpython-37.pyc ├── models.py ├── templates │ └── students │ │ ├── student_delete.html │ │ ├── student_form.html │ │ └── student_list.html ├── tests.py ├── urls.py └── views.py ├── subjects ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── forms.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ └── __init__.cpython-37.pyc ├── models.py ├── templates │ └── subjects │ │ ├── subject_delete.html │ │ ├── subject_form.html │ │ ├── subject_list.html │ │ ├── subjectcombination_delete.html │ │ ├── subjectcombination_form.html │ │ └── subjectcombination_list.html ├── tests.py ├── urls.py └── views.py └── templates ├── base.html ├── includes ├── form.html ├── form_panel.html ├── manage_panel_bottom.html └── manage_panel_top.html └── snipets ├── footer_static_files.html ├── header_static_files.html ├── nav.html └── sidebar_nav.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn mysite.wsgi --log-file - 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/Screenshots/dashboard.png -------------------------------------------------------------------------------- /Screenshots/managestudent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/Screenshots/managestudent.png -------------------------------------------------------------------------------- /Screenshots/subjectcombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/Screenshots/subjectcombination.png -------------------------------------------------------------------------------- /dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /dashboard/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/admin.py -------------------------------------------------------------------------------- /dashboard/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/apps.py -------------------------------------------------------------------------------- /dashboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/models.py -------------------------------------------------------------------------------- /dashboard/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/templates/dashboard.html -------------------------------------------------------------------------------- /dashboard/templates/find_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/templates/find_result.html -------------------------------------------------------------------------------- /dashboard/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/templates/index.html -------------------------------------------------------------------------------- /dashboard/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/templates/result.html -------------------------------------------------------------------------------- /dashboard/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/tests.py -------------------------------------------------------------------------------- /dashboard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/urls.py -------------------------------------------------------------------------------- /dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/dashboard/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/requirments.txt -------------------------------------------------------------------------------- /results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /results/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /results/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /results/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /results/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /results/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/admin.py -------------------------------------------------------------------------------- /results/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/apps.py -------------------------------------------------------------------------------- /results/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/forms.py -------------------------------------------------------------------------------- /results/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/migrations/0001_initial.py -------------------------------------------------------------------------------- /results/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/models.py -------------------------------------------------------------------------------- /results/templates/results/update_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/templates/results/update_form.html -------------------------------------------------------------------------------- /results/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/tests.py -------------------------------------------------------------------------------- /results/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/urls.py -------------------------------------------------------------------------------- /results/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/results/views.py -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.7 -------------------------------------------------------------------------------- /srms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /srms/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/srms/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /srms/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/srms/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /srms/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/srms/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /srms/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/srms/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /srms/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/srms/settings.py -------------------------------------------------------------------------------- /srms/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/srms/urls.py -------------------------------------------------------------------------------- /srms/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/srms/wsgi.py -------------------------------------------------------------------------------- /static/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/.DS_Store -------------------------------------------------------------------------------- /static/css/animate-css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/animate-css/animate.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/ckeditor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/ckeditor/.DS_Store -------------------------------------------------------------------------------- /static/css/ckeditor/skins/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/ckeditor/skins/.DS_Store -------------------------------------------------------------------------------- /static/css/dropzone/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/dropzone/dropzone.css -------------------------------------------------------------------------------- /static/css/dropzone/dropzone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/dropzone/dropzone.min.css -------------------------------------------------------------------------------- /static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/font-awesome.css -------------------------------------------------------------------------------- /static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/css/icheck/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/.DS_Store -------------------------------------------------------------------------------- /static/css/icheck/skins/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/.DS_Store -------------------------------------------------------------------------------- /static/css/icheck/skins/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/all.css -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/_all.css -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/aero.css -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/aero.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/aero@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/blue.css -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/blue.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/blue@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/flat.css -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/flat.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/flat@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/green.css -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/green.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/green@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/grey.css -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/grey.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/grey@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/orange.css -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/orange.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/orange@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/pink.css -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/pink.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/pink@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/purple.css -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/purple.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/purple@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/red.css -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/red.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/red@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/yellow.css -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/yellow.png -------------------------------------------------------------------------------- /static/css/icheck/skins/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/flat/yellow@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/line/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/_all.css -------------------------------------------------------------------------------- /static/css/icheck/skins/line/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/aero.css -------------------------------------------------------------------------------- /static/css/icheck/skins/line/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/blue.css -------------------------------------------------------------------------------- /static/css/icheck/skins/line/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/green.css -------------------------------------------------------------------------------- /static/css/icheck/skins/line/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/grey.css -------------------------------------------------------------------------------- /static/css/icheck/skins/line/line.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/line.css -------------------------------------------------------------------------------- /static/css/icheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/line.png -------------------------------------------------------------------------------- /static/css/icheck/skins/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/line@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/line/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/orange.css -------------------------------------------------------------------------------- /static/css/icheck/skins/line/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/pink.css -------------------------------------------------------------------------------- /static/css/icheck/skins/line/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/purple.css -------------------------------------------------------------------------------- /static/css/icheck/skins/line/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/red.css -------------------------------------------------------------------------------- /static/css/icheck/skins/line/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/line/yellow.css -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/_all.css -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/aero.css -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/aero.png -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/blue.css -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/blue.png -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/green.css -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/green.png -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/grey.css -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/grey.png -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/orange.css -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/orange.png -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/pink.css -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/pink.png -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/purple.css -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/purple.png -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/red.css -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/red.png -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/red@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/yellow.css -------------------------------------------------------------------------------- /static/css/icheck/skins/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/minimal/yellow.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/_all.css -------------------------------------------------------------------------------- /static/css/icheck/skins/square/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/aero.css -------------------------------------------------------------------------------- /static/css/icheck/skins/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/aero.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/aero@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/blue.css -------------------------------------------------------------------------------- /static/css/icheck/skins/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/blue.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/blue@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/green.css -------------------------------------------------------------------------------- /static/css/icheck/skins/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/green.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/grey.css -------------------------------------------------------------------------------- /static/css/icheck/skins/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/grey.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/grey@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/orange.css -------------------------------------------------------------------------------- /static/css/icheck/skins/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/orange.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/pink.css -------------------------------------------------------------------------------- /static/css/icheck/skins/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/pink.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/pink@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/purple.css -------------------------------------------------------------------------------- /static/css/icheck/skins/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/purple.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/red.css -------------------------------------------------------------------------------- /static/css/icheck/skins/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/red.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/red@2x.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/square.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/square.css -------------------------------------------------------------------------------- /static/css/icheck/skins/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/square.png -------------------------------------------------------------------------------- /static/css/icheck/skins/square/yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/yellow.css -------------------------------------------------------------------------------- /static/css/icheck/skins/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/icheck/skins/square/yellow.png -------------------------------------------------------------------------------- /static/css/iziModal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/iziModal/LICENSE -------------------------------------------------------------------------------- /static/css/iziModal/iziModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/iziModal/iziModal.css -------------------------------------------------------------------------------- /static/css/iziModal/iziModal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/iziModal/iziModal.min.css -------------------------------------------------------------------------------- /static/css/jquery-steps/jquery.steps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/jquery-steps/jquery.steps.css -------------------------------------------------------------------------------- /static/css/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /static/css/jquery-ui/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/jquery-ui/jquery-ui.min.css -------------------------------------------------------------------------------- /static/css/ladda/ladda-themeless.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/ladda/ladda-themeless.css -------------------------------------------------------------------------------- /static/css/ladda/ladda-themeless.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/ladda/ladda-themeless.min.css -------------------------------------------------------------------------------- /static/css/lobipanel/lobipanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/lobipanel/lobipanel.css -------------------------------------------------------------------------------- /static/css/lobipanel/lobipanel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/lobipanel/lobipanel.min.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/main.min.css -------------------------------------------------------------------------------- /static/css/pace/pace-barber.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-barber.css -------------------------------------------------------------------------------- /static/css/pace/pace-bounce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-bounce.css -------------------------------------------------------------------------------- /static/css/pace/pace-center-atom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-center-atom.css -------------------------------------------------------------------------------- /static/css/pace/pace-center-circle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-center-circle.css -------------------------------------------------------------------------------- /static/css/pace/pace-center-radar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-center-radar.css -------------------------------------------------------------------------------- /static/css/pace/pace-center-simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-center-simple.css -------------------------------------------------------------------------------- /static/css/pace/pace-corner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-corner.css -------------------------------------------------------------------------------- /static/css/pace/pace-counter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-counter.css -------------------------------------------------------------------------------- /static/css/pace/pace-fill-left.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-fill-left.css -------------------------------------------------------------------------------- /static/css/pace/pace-flash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-flash.css -------------------------------------------------------------------------------- /static/css/pace/pace-loading-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-loading-bar.css -------------------------------------------------------------------------------- /static/css/pace/pace-mac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-mac.css -------------------------------------------------------------------------------- /static/css/pace/pace-minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pace/pace-minimal.css -------------------------------------------------------------------------------- /static/css/pnotify/pnotify.custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/pnotify/pnotify.custom.min.css -------------------------------------------------------------------------------- /static/css/prism/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/prism/prism.css -------------------------------------------------------------------------------- /static/css/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/select2/select2.css -------------------------------------------------------------------------------- /static/css/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/select2/select2.min.css -------------------------------------------------------------------------------- /static/css/summernote/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/summernote/.DS_Store -------------------------------------------------------------------------------- /static/css/summernote/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/summernote/font/summernote.eot -------------------------------------------------------------------------------- /static/css/summernote/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/summernote/font/summernote.ttf -------------------------------------------------------------------------------- /static/css/summernote/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/summernote/font/summernote.woff -------------------------------------------------------------------------------- /static/css/summernote/summernote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/summernote/summernote.css -------------------------------------------------------------------------------- /static/css/sweet-alert/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/sweet-alert/.DS_Store -------------------------------------------------------------------------------- /static/css/sweet-alert/sweetalert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/sweet-alert/sweetalert.css -------------------------------------------------------------------------------- /static/css/switchery/switchery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/switchery/switchery.css -------------------------------------------------------------------------------- /static/css/switchery/switchery.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/switchery/switchery.min.css -------------------------------------------------------------------------------- /static/css/tagify/tagify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/tagify/tagify.css -------------------------------------------------------------------------------- /static/css/tags/jquery.tagsinput.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/tags/jquery.tagsinput.min.css -------------------------------------------------------------------------------- /static/css/toastr/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/toastr/.DS_Store -------------------------------------------------------------------------------- /static/css/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/toastr/toastr.css -------------------------------------------------------------------------------- /static/css/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/toastr/toastr.min.css -------------------------------------------------------------------------------- /static/css/x-editable/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/x-editable/.DS_Store -------------------------------------------------------------------------------- /static/css/x-editable/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/x-editable/img/clear.png -------------------------------------------------------------------------------- /static/css/x-editable/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/css/x-editable/img/loading.gif -------------------------------------------------------------------------------- /static/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/fonts/.DS_Store -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/bootstrap/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/fonts/bootstrap/.DS_Store -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/images/.DS_Store -------------------------------------------------------------------------------- /static/images/avatar-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/images/avatar-1.svg -------------------------------------------------------------------------------- /static/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/images/logo-dark.svg -------------------------------------------------------------------------------- /static/images/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/images/logo-light.svg -------------------------------------------------------------------------------- /static/images/photo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/images/photo-1.jpg -------------------------------------------------------------------------------- /static/images/photo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/images/photo-2.jpg -------------------------------------------------------------------------------- /static/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/images/profile.jpg -------------------------------------------------------------------------------- /static/images/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/images/sample.jpg -------------------------------------------------------------------------------- /static/images/thumbs-up-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/images/thumbs-up-icon.png -------------------------------------------------------------------------------- /static/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/.DS_Store -------------------------------------------------------------------------------- /static/js/DataTables/JSZip-2.5.0/jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/DataTables/JSZip-2.5.0/jszip.js -------------------------------------------------------------------------------- /static/js/DataTables/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/DataTables/datatables.css -------------------------------------------------------------------------------- /static/js/DataTables/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/DataTables/datatables.js -------------------------------------------------------------------------------- /static/js/DataTables/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/DataTables/datatables.min.css -------------------------------------------------------------------------------- /static/js/DataTables/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/DataTables/datatables.min.js -------------------------------------------------------------------------------- /static/js/amcharts/amcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/amcharts.js -------------------------------------------------------------------------------- /static/js/amcharts/funnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/funnel.js -------------------------------------------------------------------------------- /static/js/amcharts/gantt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/gantt.js -------------------------------------------------------------------------------- /static/js/amcharts/gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/gauge.js -------------------------------------------------------------------------------- /static/js/amcharts/images/dragIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/dragIcon.gif -------------------------------------------------------------------------------- /static/js/amcharts/images/dragIconH.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/dragIconH.gif -------------------------------------------------------------------------------- /static/js/amcharts/images/eraserIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/eraserIcon.svg -------------------------------------------------------------------------------- /static/js/amcharts/images/eraserIconH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/eraserIconH.svg -------------------------------------------------------------------------------- /static/js/amcharts/images/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/export.png -------------------------------------------------------------------------------- /static/js/amcharts/images/exportWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/exportWhite.png -------------------------------------------------------------------------------- /static/js/amcharts/images/lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/lens.png -------------------------------------------------------------------------------- /static/js/amcharts/images/lens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/lens.svg -------------------------------------------------------------------------------- /static/js/amcharts/images/lensWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/lensWhite.png -------------------------------------------------------------------------------- /static/js/amcharts/images/lensWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/lensWhite.svg -------------------------------------------------------------------------------- /static/js/amcharts/images/lens_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/lens_old.png -------------------------------------------------------------------------------- /static/js/amcharts/images/pencilIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/pencilIcon.svg -------------------------------------------------------------------------------- /static/js/amcharts/images/pencilIconH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/pencilIconH.svg -------------------------------------------------------------------------------- /static/js/amcharts/images/xIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/xIcon.svg -------------------------------------------------------------------------------- /static/js/amcharts/images/xIconH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/images/xIconH.svg -------------------------------------------------------------------------------- /static/js/amcharts/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/az.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/bg.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/cs.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/de.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/es.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/fi.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/fo.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/fr.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/hr.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/hu.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/id.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/is.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/it.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/ja.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/ko.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/lt.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/lv.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/mk.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/mn.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/mt.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/nl.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/no.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/pl.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/pt.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/ro.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/ru.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/rw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/rw.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/sk.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/sl.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/so.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/so.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/th.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/tr.js -------------------------------------------------------------------------------- /static/js/amcharts/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/lang/zh.js -------------------------------------------------------------------------------- /static/js/amcharts/pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/pie.js -------------------------------------------------------------------------------- /static/js/amcharts/plugins/animate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/plugins/animate/LICENSE -------------------------------------------------------------------------------- /static/js/amcharts/plugins/export/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /static/js/amcharts/plugins/export/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/plugins/export/LICENSE -------------------------------------------------------------------------------- /static/js/amcharts/plugins/export/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/plugins/export/index.js -------------------------------------------------------------------------------- /static/js/amcharts/radar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/radar.js -------------------------------------------------------------------------------- /static/js/amcharts/serial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/serial.js -------------------------------------------------------------------------------- /static/js/amcharts/themes/black.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/themes/black.js -------------------------------------------------------------------------------- /static/js/amcharts/themes/chalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/themes/chalk.js -------------------------------------------------------------------------------- /static/js/amcharts/themes/dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/themes/dark.js -------------------------------------------------------------------------------- /static/js/amcharts/themes/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/themes/light.js -------------------------------------------------------------------------------- /static/js/amcharts/themes/patterns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/themes/patterns.js -------------------------------------------------------------------------------- /static/js/amcharts/xy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/amcharts/xy.js -------------------------------------------------------------------------------- /static/js/bar-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/bar-chart.js -------------------------------------------------------------------------------- /static/js/bar-chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/bar-chart.min.js -------------------------------------------------------------------------------- /static/js/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/ckeditor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/.DS_Store -------------------------------------------------------------------------------- /static/js/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /static/js/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /static/js/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/README.md -------------------------------------------------------------------------------- /static/js/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /static/js/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/build-config.js -------------------------------------------------------------------------------- /static/js/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /static/js/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/config.js -------------------------------------------------------------------------------- /static/js/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/contents.css -------------------------------------------------------------------------------- /static/js/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/af.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/az.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/da.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/de-ch.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/de.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/el.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/en.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/es.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/et.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/he.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/id.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/is.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/it.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/km.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/no.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/oc.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/si.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/th.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /static/js/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /static/js/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /static/js/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /static/js/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/plugins/scayt/README.md -------------------------------------------------------------------------------- /static/js/ckeditor/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/plugins/wsc/LICENSE.md -------------------------------------------------------------------------------- /static/js/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/plugins/wsc/README.md -------------------------------------------------------------------------------- /static/js/ckeditor/samples/css/samples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/samples/css/samples.css -------------------------------------------------------------------------------- /static/js/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /static/js/ckeditor/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/samples/index.html -------------------------------------------------------------------------------- /static/js/ckeditor/samples/js/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/samples/js/sample.js -------------------------------------------------------------------------------- /static/js/ckeditor/samples/js/sf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/samples/js/sf.js -------------------------------------------------------------------------------- /static/js/ckeditor/samples/old/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/samples/old/ajax.html -------------------------------------------------------------------------------- /static/js/ckeditor/samples/old/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/samples/old/api.html -------------------------------------------------------------------------------- /static/js/ckeditor/samples/old/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/samples/old/index.html -------------------------------------------------------------------------------- /static/js/ckeditor/samples/old/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/samples/old/jquery.html -------------------------------------------------------------------------------- /static/js/ckeditor/samples/old/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/samples/old/sample.css -------------------------------------------------------------------------------- /static/js/ckeditor/samples/old/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/samples/old/sample.js -------------------------------------------------------------------------------- /static/js/ckeditor/skins/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/skins/.DS_Store -------------------------------------------------------------------------------- /static/js/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ckeditor/styles.js -------------------------------------------------------------------------------- /static/js/counterUp/jquery.counterup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/counterUp/jquery.counterup.js -------------------------------------------------------------------------------- /static/js/dropzone/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/dropzone/dropzone.js -------------------------------------------------------------------------------- /static/js/dropzone/dropzone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/dropzone/dropzone.min.js -------------------------------------------------------------------------------- /static/js/form-validator/brazil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/brazil.js -------------------------------------------------------------------------------- /static/js/form-validator/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/date.js -------------------------------------------------------------------------------- /static/js/form-validator/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/file.js -------------------------------------------------------------------------------- /static/js/form-validator/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/html5.js -------------------------------------------------------------------------------- /static/js/form-validator/jsconf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/jsconf.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/ca.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/cs.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/da.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/de.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/es.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/fa.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/fr.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/it.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/nl.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/no.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/pl.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/pt.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/ro.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/ru.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/sv.js -------------------------------------------------------------------------------- /static/js/form-validator/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/lang/vi.js -------------------------------------------------------------------------------- /static/js/form-validator/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/location.js -------------------------------------------------------------------------------- /static/js/form-validator/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/logic.js -------------------------------------------------------------------------------- /static/js/form-validator/poland.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/poland.js -------------------------------------------------------------------------------- /static/js/form-validator/sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/sanitize.js -------------------------------------------------------------------------------- /static/js/form-validator/security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/security.js -------------------------------------------------------------------------------- /static/js/form-validator/sepa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/sepa.js -------------------------------------------------------------------------------- /static/js/form-validator/sweden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/sweden.js -------------------------------------------------------------------------------- /static/js/form-validator/theme-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/theme-default.css -------------------------------------------------------------------------------- /static/js/form-validator/toggleDisabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/toggleDisabled.js -------------------------------------------------------------------------------- /static/js/form-validator/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/form-validator/uk.js -------------------------------------------------------------------------------- /static/js/icheck/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/icheck/.DS_Store -------------------------------------------------------------------------------- /static/js/icheck/icheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/icheck/icheck.js -------------------------------------------------------------------------------- /static/js/icheck/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/icheck/icheck.min.js -------------------------------------------------------------------------------- /static/js/iscroll/iscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/iscroll/iscroll.js -------------------------------------------------------------------------------- /static/js/iziModal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/iziModal/LICENSE -------------------------------------------------------------------------------- /static/js/iziModal/iziModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/iziModal/iziModal.js -------------------------------------------------------------------------------- /static/js/iziModal/iziModal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/iziModal/iziModal.min.js -------------------------------------------------------------------------------- /static/js/jquery-steps/jquery.steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/jquery-steps/jquery.steps.js -------------------------------------------------------------------------------- /static/js/jquery-steps/jquery.steps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/jquery-steps/jquery.steps.min.js -------------------------------------------------------------------------------- /static/js/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /static/js/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /static/js/jquery/jquery-2.2.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/jquery/jquery-2.2.4.js -------------------------------------------------------------------------------- /static/js/jquery/jquery-2.2.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/jquery/jquery-2.2.4.min.js -------------------------------------------------------------------------------- /static/js/ladda/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ladda/.DS_Store -------------------------------------------------------------------------------- /static/js/ladda/ladda.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ladda/ladda.min.js -------------------------------------------------------------------------------- /static/js/ladda/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/ladda/spin.min.js -------------------------------------------------------------------------------- /static/js/lobipanel/lobipanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/lobipanel/lobipanel.js -------------------------------------------------------------------------------- /static/js/lobipanel/lobipanel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/lobipanel/lobipanel.min.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/main.min.js -------------------------------------------------------------------------------- /static/js/mockjax/demo-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/mockjax/demo-mock.js -------------------------------------------------------------------------------- /static/js/mockjax/jquery.mockjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/mockjax/jquery.mockjax.js -------------------------------------------------------------------------------- /static/js/modernizr/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/modernizr/modernizr.js -------------------------------------------------------------------------------- /static/js/modernizr/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/modernizr/modernizr.min.js -------------------------------------------------------------------------------- /static/js/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/moment/moment.js -------------------------------------------------------------------------------- /static/js/moment/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/moment/moment.min.js -------------------------------------------------------------------------------- /static/js/pace/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/pace/pace.min.js -------------------------------------------------------------------------------- /static/js/pie-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/pie-chart.js -------------------------------------------------------------------------------- /static/js/pie-chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/pie-chart.min.js -------------------------------------------------------------------------------- /static/js/pnotify/pnotify.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/pnotify/pnotify.custom.min.js -------------------------------------------------------------------------------- /static/js/prism/prism-line-numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/prism/prism-line-numbers.js -------------------------------------------------------------------------------- /static/js/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/prism/prism.js -------------------------------------------------------------------------------- /static/js/prism/prism.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/prism/prism.min.js -------------------------------------------------------------------------------- /static/js/production-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/production-chart.js -------------------------------------------------------------------------------- /static/js/production-chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/production-chart.min.js -------------------------------------------------------------------------------- /static/js/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/select2/select2.js -------------------------------------------------------------------------------- /static/js/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/select2/select2.min.js -------------------------------------------------------------------------------- /static/js/smoothscroll/smooth-scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/smoothscroll/smooth-scroll.js -------------------------------------------------------------------------------- /static/js/summernote/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/summernote/.DS_Store -------------------------------------------------------------------------------- /static/js/summernote/summernote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/summernote/summernote.js -------------------------------------------------------------------------------- /static/js/summernote/summernote.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/summernote/summernote.min.js -------------------------------------------------------------------------------- /static/js/sweet-alert/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/sweet-alert/.DS_Store -------------------------------------------------------------------------------- /static/js/sweet-alert/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/sweet-alert/sweetalert.min.js -------------------------------------------------------------------------------- /static/js/switchery/switchery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/switchery/switchery.js -------------------------------------------------------------------------------- /static/js/switchery/switchery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/switchery/switchery.min.js -------------------------------------------------------------------------------- /static/js/tagify/jQuery.tagify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/tagify/jQuery.tagify.js -------------------------------------------------------------------------------- /static/js/tagify/jQuery.tagify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/tagify/jQuery.tagify.min.js -------------------------------------------------------------------------------- /static/js/tags/jquery.tagsinput.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/tags/jquery.tagsinput.min.js -------------------------------------------------------------------------------- /static/js/task-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/task-list.js -------------------------------------------------------------------------------- /static/js/task-list.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/task-list.min.js -------------------------------------------------------------------------------- /static/js/toastr/toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/toastr/toastr.js -------------------------------------------------------------------------------- /static/js/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/toastr/toastr.min.js -------------------------------------------------------------------------------- /static/js/traffic-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/traffic-chart.js -------------------------------------------------------------------------------- /static/js/traffic-chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/traffic-chart.min.js -------------------------------------------------------------------------------- /static/js/waypoint/waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/waypoint/waypoints.min.js -------------------------------------------------------------------------------- /static/js/x-editable/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/x-editable/.DS_Store -------------------------------------------------------------------------------- /static/js/x-editable/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/js/x-editable/demo.js -------------------------------------------------------------------------------- /static/sass/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/.DS_Store -------------------------------------------------------------------------------- /static/sass/_color-classes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/_color-classes.scss -------------------------------------------------------------------------------- /static/sass/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/_helpers.scss -------------------------------------------------------------------------------- /static/sass/bootstrap-sass/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bootstrap-sass/.DS_Store -------------------------------------------------------------------------------- /static/sass/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bootstrap.scss -------------------------------------------------------------------------------- /static/sass/bourbon/_bourbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/_bourbon.scss -------------------------------------------------------------------------------- /static/sass/bourbon/addons/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/addons/_buttons.scss -------------------------------------------------------------------------------- /static/sass/bourbon/addons/_margin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/addons/_margin.scss -------------------------------------------------------------------------------- /static/sass/bourbon/addons/_padding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/addons/_padding.scss -------------------------------------------------------------------------------- /static/sass/bourbon/addons/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/addons/_size.scss -------------------------------------------------------------------------------- /static/sass/bourbon/css3/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/css3/_animation.scss -------------------------------------------------------------------------------- /static/sass/bourbon/css3/_calc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/css3/_calc.scss -------------------------------------------------------------------------------- /static/sass/bourbon/css3/_columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/css3/_columns.scss -------------------------------------------------------------------------------- /static/sass/bourbon/css3/_filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/css3/_filter.scss -------------------------------------------------------------------------------- /static/sass/bourbon/css3/_flex-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/css3/_flex-box.scss -------------------------------------------------------------------------------- /static/sass/bourbon/css3/_font-face.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/css3/_font-face.scss -------------------------------------------------------------------------------- /static/sass/bourbon/css3/_hyphens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/css3/_hyphens.scss -------------------------------------------------------------------------------- /static/sass/bourbon/css3/_keyframes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/css3/_keyframes.scss -------------------------------------------------------------------------------- /static/sass/bourbon/css3/_selection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/css3/_selection.scss -------------------------------------------------------------------------------- /static/sass/bourbon/css3/_transform.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/css3/_transform.scss -------------------------------------------------------------------------------- /static/sass/bourbon/functions/_tint.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/bourbon/functions/_tint.scss -------------------------------------------------------------------------------- /static/sass/bourbon/settings/_px-to-em.scss: -------------------------------------------------------------------------------- 1 | $em-base: 16px !default; 2 | -------------------------------------------------------------------------------- /static/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/main.scss -------------------------------------------------------------------------------- /static/sass/typographic/typographic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static/sass/typographic/typographic.scss -------------------------------------------------------------------------------- /static_cdn/admin/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/css/autocomplete.css -------------------------------------------------------------------------------- /static_cdn/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/css/base.css -------------------------------------------------------------------------------- /static_cdn/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/css/changelists.css -------------------------------------------------------------------------------- /static_cdn/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/css/dashboard.css -------------------------------------------------------------------------------- /static_cdn/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/css/fonts.css -------------------------------------------------------------------------------- /static_cdn/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/css/forms.css -------------------------------------------------------------------------------- /static_cdn/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/css/login.css -------------------------------------------------------------------------------- /static_cdn/admin/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/css/responsive.css -------------------------------------------------------------------------------- /static_cdn/admin/css/responsive_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/css/responsive_rtl.css -------------------------------------------------------------------------------- /static_cdn/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/css/rtl.css -------------------------------------------------------------------------------- /static_cdn/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/css/widgets.css -------------------------------------------------------------------------------- /static_cdn/admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /static_cdn/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/fonts/README.txt -------------------------------------------------------------------------------- /static_cdn/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/LICENSE -------------------------------------------------------------------------------- /static_cdn/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/README.txt -------------------------------------------------------------------------------- /static_cdn/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/icon-no.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/icon-viewlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/icon-viewlink.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/search.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /static_cdn/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /static_cdn/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/SelectBox.js -------------------------------------------------------------------------------- /static_cdn/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /static_cdn/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/actions.js -------------------------------------------------------------------------------- /static_cdn/admin/js/actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/actions.min.js -------------------------------------------------------------------------------- /static_cdn/admin/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/autocomplete.js -------------------------------------------------------------------------------- /static_cdn/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/calendar.js -------------------------------------------------------------------------------- /static_cdn/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/cancel.js -------------------------------------------------------------------------------- /static_cdn/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/change_form.js -------------------------------------------------------------------------------- /static_cdn/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/collapse.js -------------------------------------------------------------------------------- /static_cdn/admin/js/collapse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/collapse.min.js -------------------------------------------------------------------------------- /static_cdn/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/core.js -------------------------------------------------------------------------------- /static_cdn/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/inlines.js -------------------------------------------------------------------------------- /static_cdn/admin/js/inlines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/inlines.min.js -------------------------------------------------------------------------------- /static_cdn/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/jquery.init.js -------------------------------------------------------------------------------- /static_cdn/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/popup_response.js -------------------------------------------------------------------------------- /static_cdn/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/prepopulate.js -------------------------------------------------------------------------------- /static_cdn/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/prepopulate.min.js -------------------------------------------------------------------------------- /static_cdn/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /static_cdn/admin/js/timeparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/timeparse.js -------------------------------------------------------------------------------- /static_cdn/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/admin/js/urlify.js -------------------------------------------------------------------------------- /static_cdn/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/bootstrap.css -------------------------------------------------------------------------------- /static_cdn/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/bootstrap.min.css -------------------------------------------------------------------------------- /static_cdn/css/dropzone/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/dropzone/dropzone.css -------------------------------------------------------------------------------- /static_cdn/css/dropzone/dropzone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/dropzone/dropzone.min.css -------------------------------------------------------------------------------- /static_cdn/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/font-awesome.css -------------------------------------------------------------------------------- /static_cdn/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/font-awesome.min.css -------------------------------------------------------------------------------- /static_cdn/css/icheck/skins/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/icheck/skins/all.css -------------------------------------------------------------------------------- /static_cdn/css/icheck/skins/flat/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/icheck/skins/flat/red.css -------------------------------------------------------------------------------- /static_cdn/css/icheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/icheck/skins/flat/red.png -------------------------------------------------------------------------------- /static_cdn/css/icheck/skins/line/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/icheck/skins/line/red.css -------------------------------------------------------------------------------- /static_cdn/css/iziModal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/iziModal/LICENSE -------------------------------------------------------------------------------- /static_cdn/css/iziModal/iziModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/iziModal/iziModal.css -------------------------------------------------------------------------------- /static_cdn/css/iziModal/iziModal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/iziModal/iziModal.min.css -------------------------------------------------------------------------------- /static_cdn/css/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /static_cdn/css/ladda/ladda-themeless.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/ladda/ladda-themeless.css -------------------------------------------------------------------------------- /static_cdn/css/lobipanel/lobipanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/lobipanel/lobipanel.css -------------------------------------------------------------------------------- /static_cdn/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/main.css -------------------------------------------------------------------------------- /static_cdn/css/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/main.min.css -------------------------------------------------------------------------------- /static_cdn/css/pace/pace-barber.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/pace/pace-barber.css -------------------------------------------------------------------------------- /static_cdn/css/pace/pace-bounce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/pace/pace-bounce.css -------------------------------------------------------------------------------- /static_cdn/css/pace/pace-center-atom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/pace/pace-center-atom.css -------------------------------------------------------------------------------- /static_cdn/css/pace/pace-corner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/pace/pace-corner.css -------------------------------------------------------------------------------- /static_cdn/css/pace/pace-counter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/pace/pace-counter.css -------------------------------------------------------------------------------- /static_cdn/css/pace/pace-fill-left.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/pace/pace-fill-left.css -------------------------------------------------------------------------------- /static_cdn/css/pace/pace-flash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/pace/pace-flash.css -------------------------------------------------------------------------------- /static_cdn/css/pace/pace-loading-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/pace/pace-loading-bar.css -------------------------------------------------------------------------------- /static_cdn/css/pace/pace-mac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/pace/pace-mac.css -------------------------------------------------------------------------------- /static_cdn/css/pace/pace-minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/pace/pace-minimal.css -------------------------------------------------------------------------------- /static_cdn/css/prism/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/prism/prism.css -------------------------------------------------------------------------------- /static_cdn/css/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/select2/select2.css -------------------------------------------------------------------------------- /static_cdn/css/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/select2/select2.min.css -------------------------------------------------------------------------------- /static_cdn/css/summernote/summernote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/summernote/summernote.css -------------------------------------------------------------------------------- /static_cdn/css/switchery/switchery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/switchery/switchery.css -------------------------------------------------------------------------------- /static_cdn/css/tagify/tagify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/tagify/tagify.css -------------------------------------------------------------------------------- /static_cdn/css/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/toastr/toastr.css -------------------------------------------------------------------------------- /static_cdn/css/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/toastr/toastr.min.css -------------------------------------------------------------------------------- /static_cdn/css/x-editable/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/css/x-editable/img/clear.png -------------------------------------------------------------------------------- /static_cdn/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static_cdn/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static_cdn/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static_cdn/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static_cdn/images/avatar-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/images/avatar-1.svg -------------------------------------------------------------------------------- /static_cdn/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/images/logo-dark.svg -------------------------------------------------------------------------------- /static_cdn/images/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/images/logo-light.svg -------------------------------------------------------------------------------- /static_cdn/images/photo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/images/photo-1.jpg -------------------------------------------------------------------------------- /static_cdn/images/photo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/images/photo-2.jpg -------------------------------------------------------------------------------- /static_cdn/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/images/profile.jpg -------------------------------------------------------------------------------- /static_cdn/images/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/images/sample.jpg -------------------------------------------------------------------------------- /static_cdn/images/thumbs-up-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/images/thumbs-up-icon.png -------------------------------------------------------------------------------- /static_cdn/js/DataTables/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/DataTables/datatables.css -------------------------------------------------------------------------------- /static_cdn/js/DataTables/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/DataTables/datatables.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/amcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/amcharts.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/funnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/funnel.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/gantt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/gantt.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/gauge.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/images/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/images/export.png -------------------------------------------------------------------------------- /static_cdn/js/amcharts/images/lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/images/lens.png -------------------------------------------------------------------------------- /static_cdn/js/amcharts/images/lens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/images/lens.svg -------------------------------------------------------------------------------- /static_cdn/js/amcharts/images/xIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/images/xIcon.svg -------------------------------------------------------------------------------- /static_cdn/js/amcharts/images/xIconH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/images/xIconH.svg -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/az.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/bg.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/cs.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/de.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/es.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/fi.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/fo.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/fr.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/hr.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/hu.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/id.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/is.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/it.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/ja.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/ko.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/lt.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/lv.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/mk.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/mn.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/mt.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/nl.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/no.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/pl.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/pt.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/ro.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/ru.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/rw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/rw.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/sk.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/sl.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/so.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/so.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/th.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/tr.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/lang/zh.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/pie.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/radar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/radar.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/serial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/serial.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/themes/black.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/themes/black.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/themes/chalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/themes/chalk.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/themes/dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/themes/dark.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/themes/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/themes/light.js -------------------------------------------------------------------------------- /static_cdn/js/amcharts/xy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/amcharts/xy.js -------------------------------------------------------------------------------- /static_cdn/js/bar-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/bar-chart.js -------------------------------------------------------------------------------- /static_cdn/js/bar-chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/bar-chart.min.js -------------------------------------------------------------------------------- /static_cdn/js/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /static_cdn/js/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/README.md -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/build-config.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/config.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/contents.css -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/af.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/az.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/da.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/de-ch.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/de.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/el.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/en.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/es.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/et.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/he.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/id.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/is.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/it.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/km.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/no.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/oc.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/si.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/th.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/samples/js/sf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/samples/js/sf.js -------------------------------------------------------------------------------- /static_cdn/js/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ckeditor/styles.js -------------------------------------------------------------------------------- /static_cdn/js/dropzone/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/dropzone/dropzone.js -------------------------------------------------------------------------------- /static_cdn/js/dropzone/dropzone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/dropzone/dropzone.min.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/brazil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/brazil.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/date.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/file.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/html5.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/jsconf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/jsconf.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/ca.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/cs.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/da.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/de.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/es.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/fa.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/fr.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/it.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/nl.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/no.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/pl.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/pt.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/ro.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/ru.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/sv.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/lang/vi.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/location.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/logic.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/poland.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/poland.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/sanitize.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/security.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/sepa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/sepa.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/sweden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/sweden.js -------------------------------------------------------------------------------- /static_cdn/js/form-validator/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/form-validator/uk.js -------------------------------------------------------------------------------- /static_cdn/js/icheck/icheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/icheck/icheck.js -------------------------------------------------------------------------------- /static_cdn/js/icheck/icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/icheck/icheck.min.js -------------------------------------------------------------------------------- /static_cdn/js/iscroll/iscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/iscroll/iscroll.js -------------------------------------------------------------------------------- /static_cdn/js/iziModal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/iziModal/LICENSE -------------------------------------------------------------------------------- /static_cdn/js/iziModal/iziModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/iziModal/iziModal.js -------------------------------------------------------------------------------- /static_cdn/js/iziModal/iziModal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/iziModal/iziModal.min.js -------------------------------------------------------------------------------- /static_cdn/js/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /static_cdn/js/jquery-ui/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/jquery-ui/jquery-ui.min.js -------------------------------------------------------------------------------- /static_cdn/js/jquery/jquery-2.2.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/jquery/jquery-2.2.4.js -------------------------------------------------------------------------------- /static_cdn/js/jquery/jquery-2.2.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/jquery/jquery-2.2.4.min.js -------------------------------------------------------------------------------- /static_cdn/js/ladda/ladda.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ladda/ladda.min.js -------------------------------------------------------------------------------- /static_cdn/js/ladda/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/ladda/spin.min.js -------------------------------------------------------------------------------- /static_cdn/js/lobipanel/lobipanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/lobipanel/lobipanel.js -------------------------------------------------------------------------------- /static_cdn/js/lobipanel/lobipanel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/lobipanel/lobipanel.min.js -------------------------------------------------------------------------------- /static_cdn/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/main.js -------------------------------------------------------------------------------- /static_cdn/js/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/main.min.js -------------------------------------------------------------------------------- /static_cdn/js/mockjax/demo-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/mockjax/demo-mock.js -------------------------------------------------------------------------------- /static_cdn/js/mockjax/jquery.mockjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/mockjax/jquery.mockjax.js -------------------------------------------------------------------------------- /static_cdn/js/modernizr/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/modernizr/modernizr.js -------------------------------------------------------------------------------- /static_cdn/js/modernizr/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/modernizr/modernizr.min.js -------------------------------------------------------------------------------- /static_cdn/js/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/moment/moment.js -------------------------------------------------------------------------------- /static_cdn/js/moment/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/moment/moment.min.js -------------------------------------------------------------------------------- /static_cdn/js/pace/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/pace/pace.min.js -------------------------------------------------------------------------------- /static_cdn/js/pie-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/pie-chart.js -------------------------------------------------------------------------------- /static_cdn/js/pie-chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/pie-chart.min.js -------------------------------------------------------------------------------- /static_cdn/js/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/prism/prism.js -------------------------------------------------------------------------------- /static_cdn/js/prism/prism.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/prism/prism.min.js -------------------------------------------------------------------------------- /static_cdn/js/production-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/production-chart.js -------------------------------------------------------------------------------- /static_cdn/js/production-chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/production-chart.min.js -------------------------------------------------------------------------------- /static_cdn/js/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/select2/select2.js -------------------------------------------------------------------------------- /static_cdn/js/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/select2/select2.min.js -------------------------------------------------------------------------------- /static_cdn/js/summernote/summernote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/summernote/summernote.js -------------------------------------------------------------------------------- /static_cdn/js/switchery/switchery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/switchery/switchery.js -------------------------------------------------------------------------------- /static_cdn/js/switchery/switchery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/switchery/switchery.min.js -------------------------------------------------------------------------------- /static_cdn/js/tagify/jQuery.tagify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/tagify/jQuery.tagify.js -------------------------------------------------------------------------------- /static_cdn/js/task-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/task-list.js -------------------------------------------------------------------------------- /static_cdn/js/task-list.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/task-list.min.js -------------------------------------------------------------------------------- /static_cdn/js/toastr/toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/toastr/toastr.js -------------------------------------------------------------------------------- /static_cdn/js/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/toastr/toastr.min.js -------------------------------------------------------------------------------- /static_cdn/js/traffic-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/traffic-chart.js -------------------------------------------------------------------------------- /static_cdn/js/traffic-chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/traffic-chart.min.js -------------------------------------------------------------------------------- /static_cdn/js/waypoint/waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/waypoint/waypoints.min.js -------------------------------------------------------------------------------- /static_cdn/js/x-editable/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/js/x-editable/demo.js -------------------------------------------------------------------------------- /static_cdn/sass/_color-classes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/sass/_color-classes.scss -------------------------------------------------------------------------------- /static_cdn/sass/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/sass/_helpers.scss -------------------------------------------------------------------------------- /static_cdn/sass/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/sass/bootstrap.scss -------------------------------------------------------------------------------- /static_cdn/sass/bourbon/_bourbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/sass/bourbon/_bourbon.scss -------------------------------------------------------------------------------- /static_cdn/sass/bourbon/css3/_calc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/sass/bourbon/css3/_calc.scss -------------------------------------------------------------------------------- /static_cdn/sass/bourbon/settings/_px-to-em.scss: -------------------------------------------------------------------------------- 1 | $em-base: 16px !default; 2 | -------------------------------------------------------------------------------- /static_cdn/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/static_cdn/sass/main.scss -------------------------------------------------------------------------------- /student_classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /student_classes/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/student_classes/admin.py -------------------------------------------------------------------------------- /student_classes/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/student_classes/apps.py -------------------------------------------------------------------------------- /student_classes/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/student_classes/forms.py -------------------------------------------------------------------------------- /student_classes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /student_classes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/student_classes/models.py -------------------------------------------------------------------------------- /student_classes/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/student_classes/tests.py -------------------------------------------------------------------------------- /student_classes/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/student_classes/urls.py -------------------------------------------------------------------------------- /student_classes/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/student_classes/views.py -------------------------------------------------------------------------------- /students/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /students/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/students/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /students/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/students/admin.py -------------------------------------------------------------------------------- /students/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/students/apps.py -------------------------------------------------------------------------------- /students/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/students/forms.py -------------------------------------------------------------------------------- /students/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/students/migrations/0001_initial.py -------------------------------------------------------------------------------- /students/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /students/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/students/models.py -------------------------------------------------------------------------------- /students/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/students/tests.py -------------------------------------------------------------------------------- /students/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/students/urls.py -------------------------------------------------------------------------------- /students/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/students/views.py -------------------------------------------------------------------------------- /subjects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subjects/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/subjects/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /subjects/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/subjects/admin.py -------------------------------------------------------------------------------- /subjects/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/subjects/apps.py -------------------------------------------------------------------------------- /subjects/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/subjects/forms.py -------------------------------------------------------------------------------- /subjects/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/subjects/migrations/0001_initial.py -------------------------------------------------------------------------------- /subjects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subjects/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/subjects/models.py -------------------------------------------------------------------------------- /subjects/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/subjects/tests.py -------------------------------------------------------------------------------- /subjects/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/subjects/urls.py -------------------------------------------------------------------------------- /subjects/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/subjects/views.py -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/includes/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/templates/includes/form.html -------------------------------------------------------------------------------- /templates/includes/form_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/templates/includes/form_panel.html -------------------------------------------------------------------------------- /templates/includes/manage_panel_top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/templates/includes/manage_panel_top.html -------------------------------------------------------------------------------- /templates/snipets/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/templates/snipets/nav.html -------------------------------------------------------------------------------- /templates/snipets/sidebar_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riajulkashem/SRMS/HEAD/templates/snipets/sidebar_nav.html --------------------------------------------------------------------------------