diff --git a/Apollo/assets/views/status-update/certification_status.html b/Apollo/assets/views/status-update/certification_status.html
index c98b1bf6..ff296fb4 100755
--- a/Apollo/assets/views/status-update/certification_status.html
+++ b/Apollo/assets/views/status-update/certification_status.html
@@ -37,7 +37,7 @@
Course
-
+
diff --git a/Apollo/assets/views/status-update/fees_status.html b/Apollo/assets/views/status-update/fees_status.html
index a16eb4fd..a7b19941 100755
--- a/Apollo/assets/views/status-update/fees_status.html
+++ b/Apollo/assets/views/status-update/fees_status.html
@@ -81,7 +81,7 @@
-
diff --git a/Apollo/assets/views/status-update/study_material_status.html b/Apollo/assets/views/status-update/study_material_status.html
index 9678de9a..0e7268bc 100755
--- a/Apollo/assets/views/status-update/study_material_status.html
+++ b/Apollo/assets/views/status-update/study_material_status.html
@@ -37,7 +37,7 @@
Course
-
+
diff --git a/Apollo/assets/views/student/student_details.html b/Apollo/assets/views/student/student_details.html
index 68e861d1..d351cec7 100755
--- a/Apollo/assets/views/student/student_details.html
+++ b/Apollo/assets/views/student/student_details.html
@@ -96,7 +96,7 @@
Course
-
+
diff --git a/Apollo/assets/views/student/student_details_SuperAdmin.html b/Apollo/assets/views/student/student_details_SuperAdmin.html
index 265ebb3a..5a1543c0 100644
--- a/Apollo/assets/views/student/student_details_SuperAdmin.html
+++ b/Apollo/assets/views/student/student_details_SuperAdmin.html
@@ -137,7 +137,7 @@
Course
-
+
diff --git a/Apollo/bower_components/select2/dist/css/select2.css b/Apollo/bower_components/select2/dist/css/select2.css
index c69b7273..9218a6ca 100755
--- a/Apollo/bower_components/select2/dist/css/select2.css
+++ b/Apollo/bower_components/select2/dist/css/select2.css
@@ -8,7 +8,7 @@
box-sizing: border-box;
cursor: pointer;
display: block;
- height: 28px;
+ height: 34px;
user-select: none;
-webkit-user-select: none; }
.select2-container .select2-selection--single .select2-selection__rendered {
@@ -115,7 +115,7 @@
.select2-container--default .select2-selection--single {
background-color: #fff;
border: 1px solid #aaa;
- border-radius: 4px; }
+ border-radius: 0px; }
.select2-container--default .select2-selection--single .select2-selection__rendered {
color: #444;
line-height: 28px; }
diff --git a/Apollo/bower_components/ui-select2-master/.bowerrc b/Apollo/bower_components/ui-select2-master/.bowerrc
new file mode 100644
index 00000000..deceb62e
--- /dev/null
+++ b/Apollo/bower_components/ui-select2-master/.bowerrc
@@ -0,0 +1,3 @@
+{
+ "directory": "bower_components"
+}
\ No newline at end of file
diff --git a/Apollo/bower_components/ui-select2-master/.gitignore b/Apollo/bower_components/ui-select2-master/.gitignore
new file mode 100644
index 00000000..d8d73943
--- /dev/null
+++ b/Apollo/bower_components/ui-select2-master/.gitignore
@@ -0,0 +1,3 @@
+node_modules
+bower_components
+demo/bower_components
\ No newline at end of file
diff --git a/Apollo/bower_components/ui-select2-master/.jshintrc b/Apollo/bower_components/ui-select2-master/.jshintrc
new file mode 100644
index 00000000..1b83bfb4
--- /dev/null
+++ b/Apollo/bower_components/ui-select2-master/.jshintrc
@@ -0,0 +1,11 @@
+{
+ "curly": true,
+ "eqeqeq": true,
+ "immed": true,
+ "latedef": true,
+ "newcap": true,
+ "noarg": true,
+ "sub": true,
+ "boss": true,
+ "eqnull": true
+}
diff --git a/Apollo/bower_components/ui-select2-master/.travis.yml b/Apollo/bower_components/ui-select2-master/.travis.yml
new file mode 100644
index 00000000..ffa35634
--- /dev/null
+++ b/Apollo/bower_components/ui-select2-master/.travis.yml
@@ -0,0 +1,13 @@
+ language: node_js
+ node_js:
+ - "0.8"
+ - "0.10"
+
+ before_install:
+ - export DISPLAY=:99.0
+ - sh -e /etc/init.d/xvfb start
+ - npm install -g karma bower grunt-cli
+ - bower install
+ - npm install
+
+ script: "grunt"
diff --git a/Apollo/bower_components/ui-select2-master/CONTRIBUTING.md b/Apollo/bower_components/ui-select2-master/CONTRIBUTING.md
new file mode 100644
index 00000000..cb66f02b
--- /dev/null
+++ b/Apollo/bower_components/ui-select2-master/CONTRIBUTING.md
@@ -0,0 +1,8 @@
+CONTRIBUTING
+============
+
+* Open a [Pull Request (PR)](https://github.com/angular-ui/ui-select2/pull/new/master)
+* Make sure your PR is on a **new branch** you created off of the latest version of master
+* Do **not** open a PR from your master branch
+* Open a PR to start a discussion even if the code isn't finished (easier to collect feedback this way)
+* Make sure all previous tests pass and add new tests for added behaviors
diff --git a/Apollo/bower_components/ui-select2-master/Gruntfile.js b/Apollo/bower_components/ui-select2-master/Gruntfile.js
new file mode 100644
index 00000000..f2148422
--- /dev/null
+++ b/Apollo/bower_components/ui-select2-master/Gruntfile.js
@@ -0,0 +1,59 @@
+module.exports = function (grunt) {
+ 'use strict';
+
+ var initConfig;
+
+ // Loading external tasks
+ require('load-grunt-tasks')(grunt);
+
+ // Project configuration.
+ initConfig = {
+ bower: 'bower_components',
+ pkg: grunt.file.readJSON('package.json'),
+ watch: {
+ test: {
+ // Lint & run unit tests in Karma
+ // Just running `$ grunt watch` will only lint your code; to run tests
+ // on watch, use `$ grunt watch:karma` to start a Karma server first
+ files: ['src/select2.js', 'test/select2Spec.js'],
+ tasks: ['jshint', 'karma:unit:run']
+ }
+ },
+ karma: {
+ options: {
+ configFile: 'test/karma.conf.js',
+ browsers: ['Firefox', 'PhantomJS']
+ },
+ unit: {
+ singleRun: true
+ },
+ watch: {
+ autoWatch: true
+ },
+ server: {
+ background: true
+ }
+ },
+ jshint: {
+ all:[
+ 'gruntFile.js',
+ 'src/**/*.js',
+ 'test/**/*Spec.js'
+ ],
+ options: {
+ jshintrc: '.jshintrc'
+ }
+ },
+ changelog: {
+ options: {
+ dest: 'CHANGELOG.md'
+ }
+ }
+ };
+
+ // Register tasks
+ grunt.registerTask('default', ['jshint', 'karma:unit']);
+ grunt.registerTask('watch', ['jshint', 'karma:watch']);
+
+ grunt.initConfig(initConfig);
+};
diff --git a/Apollo/bower_components/ui-select2-master/LICENSE b/Apollo/bower_components/ui-select2-master/LICENSE
new file mode 100644
index 00000000..dfc5e0ca
--- /dev/null
+++ b/Apollo/bower_components/ui-select2-master/LICENSE
@@ -0,0 +1,21 @@
+The MIT License
+
+Copyright (c) 2012 the AngularUI Team, http://angular-ui.github.com
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/Apollo/bower_components/ui-select2-master/README.md b/Apollo/bower_components/ui-select2-master/README.md
new file mode 100644
index 00000000..7b32cb75
--- /dev/null
+++ b/Apollo/bower_components/ui-select2-master/README.md
@@ -0,0 +1,183 @@
+ui-select2 (deprecated) [](https://travis-ci.org/angular-ui/ui-select2)
+========================
+
+# Annoucement
+
+
+This **directive is now obsolete**. A new initiative, more active, and 100% angular is available at https://github.com/angular-ui/ui-select.
+
+As development slowed down on ui-select2, it is getting unlikely that bugs will be fixed. So the new alternative should be used as soon as possible.
+
+# Description
+
+This directive allows you to enhance your select elements with behaviour from the [select2](http://ivaynberg.github.io/select2/) library.
+
+# Requirements
+
+- [AngularJS](http://angularjs.org/)
+- [JQuery](http://jquery.com/)
+- [Select2](http://ivaynberg.github.io/select2/)
+
+## Setup
+
+1. Install **Karma**, **Grunt** and **Bower**
+ `$ npm install -g karma grunt-cli bower`
+2. Install development dependencies
+ `$ npm install`
+3. Install components
+ `$ bower install`
+4. ???
+5. Profit!
+
+## Testing
+
+We use [Grunt](http://gruntjs.com/) to check for JavaScript syntax errors and execute all unit tests. To run Grunt, simply execute:
+
+`$ grunt`
+
+This will lint and test the code, then exit. To have Grunt stay open and automatically lint and test your files whenever you make a code change, use:
+
+`$ grunt karma:server watch`
+
+This will start a Karma server in the background and run unit tests in Firefox and PhantomJS whenever the source code or spec file is saved.
+
+# Usage
+
+We use [bower](https://github.com/bower/bower) for dependency management. Install AngularUI Select2 into your project by running the command
+
+`$ bower install angular-ui-select2`
+
+If you use a `bower.json` file in your project, you can have Bower save ui-select2 as a dependency by passing the `--save` or `--save-dev` flag with the above command.
+
+This will copy the ui-select2 files into your `bower_components` folder, along with its dependencies. Load the script files in your application:
+```html
+
+
+
+
+
+```
+
+(Note that `jquery` must be loaded before `angular` so that it doesn't use `jqLite` internally)
+
+
+Add the select2 module as a dependency to your application module:
+
+```javascript
+var myAppModule = angular.module('MyApp', ['ui.select2']);
+```
+
+Apply the directive to your form elements:
+
+```html
+
+
+
+
+
+
+```
+
+## Options
+
+All the select2 options can be passed through the directive. You can read more about the supported list of options and what they do on the [Select2 Documentation Page](http://ivaynberg.github.com/select2/)
+
+```javascript
+myAppModule.controller('MyController', function($scope) {
+ $scope.select2Options = {
+ allowClear:true
+ };
+});
+```
+
+```html
+
+
+
+
+
+```
+
+Some times it may make sense to specify the options in the template file.
+
+```html
+
+
+
+
+
+```
+
+To define global defaults, you can configure the `uiSelect2Config` injectable:
+
+```javascript
+myAppModule.run(['uiSelect2Config', function(uiSelect2Config) {
+ uiSelect2Config.placeholder = "Placeholder text";
+}]);
+```
+
+## Working with ng-model
+
+The ui-select2 directive plays nicely with ng-model and validation directives such as ng-required.
+
+If you add the ng-model directive to same the element as ui-select2 then the picked option is automatically synchronized with the model value.
+
+## Working with dynamic options
+`ui-select2` is incompatible with ``. For the best results use `