study material pages added
This commit is contained in:
parent
5f17dab463
commit
25ce4aefcf
@ -72,7 +72,11 @@
|
||||
"MAIN": "MANAGE STUDENTS",
|
||||
"LISTING": "STUDENTS LISTING",
|
||||
"ENROLLMENT": "STUDENT ENROLLMENT",
|
||||
"STUDENTDETAILS": "STUDENT DETAILS"
|
||||
"STUDENTDETAILS": "STUDENT DETAILS",
|
||||
"status" : {
|
||||
"MAIN": "STATUS UPDATE",
|
||||
"STUDYMATERIAL": "STUDY MATERIAL"
|
||||
}
|
||||
},
|
||||
"status": {
|
||||
"MAIN": "STATUS",
|
||||
|
||||
@ -121,6 +121,10 @@ app.constant('JS_REQUIRES', {
|
||||
* status
|
||||
* */
|
||||
'statusCtrl': 'assets/js/controllers/statusCtrl.js',
|
||||
/*
|
||||
* student status updation
|
||||
* */
|
||||
'studyMaterialStatusCtrl': 'assets/js/controllers/studyMaterialStatusCtrl.js',
|
||||
|
||||
//*** Filters
|
||||
'htmlToPlaintext': 'assets/js/filters/htmlToPlaintext.js'
|
||||
|
||||
@ -188,13 +188,22 @@ app.config(['$stateProvider', '$urlRouterProvider', '$controllerProvider', '$com
|
||||
ncyBreadcrumb: {
|
||||
label: 'Student Details'
|
||||
}
|
||||
}).state('app.status', {
|
||||
}).state('app.student.status', {
|
||||
url: '/status',
|
||||
template: '<div ui-view class="fade-in-up"></div>',
|
||||
template: '<div ui-view class="fade-in-up"> <div style="margin: auto; width: 50%;padding: 10px;"> STUDENT STATUS UPDATE </div> </div>',
|
||||
title: 'status',
|
||||
ncyBreadcrumb: {
|
||||
label: 'status'
|
||||
}
|
||||
}).state('app.student.status.studymaterial', {
|
||||
url: '/studymaterial',
|
||||
templateUrl: "assets/views/status-update/study_material_status.html",
|
||||
title: 'Study Material',
|
||||
resolve: loadSequence('spin', 'ladda', 'angular-ladda', 'ngTable', 'studyMaterialStatusCtrl'),
|
||||
ncyBreadcrumb: {
|
||||
label: 'Study Material'
|
||||
},
|
||||
// resolve: loadSequence('wizardCtrl')
|
||||
}).state('app.status.application', {
|
||||
url: '/application',
|
||||
templateUrl: "assets/views/form_elements.html",
|
||||
@ -219,14 +228,6 @@ app.config(['$stateProvider', '$urlRouterProvider', '$controllerProvider', '$com
|
||||
label: 'answerbooklet'
|
||||
},
|
||||
// resolve: loadSequence('ckeditor-plugin', 'ckeditor', 'ckeditorCtrl')
|
||||
}).state('app.status.studymaterial', {
|
||||
url: '/studymaterial',
|
||||
templateUrl: "assets/views/form_wizard.html",
|
||||
title: 'studymaterial',
|
||||
ncyBreadcrumb: {
|
||||
label: 'studymaterial'
|
||||
},
|
||||
// resolve: loadSequence('wizardCtrl')
|
||||
}).state('app.status.certificate', {
|
||||
url: '/certificate',
|
||||
templateUrl: "assets/views/form_validation.html",
|
||||
|
||||
11
Apollo/assets/js/controllers/studyMaterialStatusCtrl.js
Normal file
11
Apollo/assets/js/controllers/studyMaterialStatusCtrl.js
Normal file
@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
/*** controller for Wizard Form example***/
|
||||
app.controller('studyMaterialStatusCtrl', ["$scope", "$filter", "ngTableParams", "API_POINTS", "$http", "SweetAlert", "$state", 'md5', 'ipCookie', function ($scope, $filter, ngTableParams, apiPoint, $http, SweetAlert, $state, md5, ipCookie) {
|
||||
|
||||
/**
|
||||
* Logined user profile view
|
||||
* by : kdk
|
||||
*/
|
||||
|
||||
|
||||
}]);
|
||||
@ -206,6 +206,18 @@
|
||||
<span class="title" translate="sidebar.nav.student.STUDENTDETAILS"> STUDENT DETAILS </span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:;">
|
||||
<span translate="sidebar.nav.student.status.MAIN">Status Update</span> <i class="icon-arrow"></i>
|
||||
</a>
|
||||
<ul class="sub-menu">
|
||||
<li ui-sref-active="active">
|
||||
<a ui-sref="app.student.status.studymaterial" translate="sidebar.nav.student.status.STUDYMATERIAL">
|
||||
Study Material
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li ng-class="{'active open':$state.includes('app.tracking')}">
|
||||
|
||||
25
Apollo/assets/views/status-update/study_material_status.html
Normal file
25
Apollo/assets/views/status-update/study_material_status.html
Normal file
@ -0,0 +1,25 @@
|
||||
<!-- start: PAGE TITLE -->
|
||||
<section id="page-title">
|
||||
<div class="row">
|
||||
<div class="col-sm-8">
|
||||
<h1 class="mainTitle" translate="sidebar.nav.pages.USERPROFILE">{{ mainTitle }}</h1>
|
||||
<span class="mainDescription"></span>
|
||||
</div>
|
||||
<div ncy-breadcrumb></div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- end: PAGE TITLE -->
|
||||
<!-- start: USER PROFILE -->
|
||||
<div class="container-fluid container-fullw bg-white">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<!-- /// controller: 'UserCtrl' - localtion: assets/js/controllers/userCtrl.js /// -->
|
||||
<div ng-controller="studyMaterialStatusCtrl">
|
||||
<!-- start: USER TABSET -->
|
||||
|
||||
<!-- end: USER TABSET -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end: USER PROFILE -->
|
||||
Loading…
Reference in New Issue
Block a user