Blame view

imports/client/views/org/admin/AdminLayout.js 3.4 KB
52c4c75df   Deepak   fixed admin compo...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  import _                                  from 'lodash';
  import { Meteor }                         from 'meteor/meteor';
  import React, { Component }               from 'react';
  import { Link }                           from 'react-router';
  import { Avatar }                         from '/imports/client/components/Avatar';
  import { Icon }                           from '/imports/client/components/Icon';
  import classNames                         from 'classnames';
  import { EnterModule }                    from '/imports/client/views/org/enter/module/index';
  import { AdminSidebar }                   from './Sidebar'
  import { AdminBreadcrumb }                from './Breadcrumb'
  // import { VerifyModule }                   from '/imports/client/views/verify/module/index';
  import { Navbar,Modal, Nav, NavItem,
    Glyphicon, Collapse,
    NavbarToggler, NavbarBrand,
    NavLink, DropdownItem, DropdownToggle, DropdownMenu,
    NavDropdown, MenuItem, Breadcrumb }                 from 'react-bootstrap';
    import { VerifyModule }                   from '/imports/client/views/verify/module/index'
  
  var Accordion = require('react-bootstrap').Accordion;
  var Panel = require('react-bootstrap').Panel;
  export class AdminAppLayout extends Component {
    render() {
      const {user, org} = this.props;
      return (
        <div className = "appLayout-box">
          <div className="page-container">
              <div className="page-content">
              <AdminSidebar
                user = {user}
                org = {org}
              />
          	<div className="content-wrapper">
                  <AdminBreadcrumb />
                  <div className="content">
          					<div className="row">
          						<div className="col-lg-3 col-md-6">
          							<div className="thumbnail">
          								<Link to="/students" >
            								<div className="thumb thumb-rounded">
            									<img src="assets/images/download2.png" alt="" />
            								</div>
          						    	<div className="caption text-center">
          						    		<h6 className="text-semibold no-margin">Students <small className="display-block">Click to view</small></h6>
          						    	</div>
          								</Link>
82e73280a   Deepak   changed remaining...
46
          					    </div>
52c4c75df   Deepak   fixed admin compo...
47
48
49
          						</div>
          						<div className="col-lg-3 col-md-6">
          							<div className="thumbnail">
925ffa9d3   Deepak   changed teachers ...
50
          								<Link to="/staff" >
52c4c75df   Deepak   fixed admin compo...
51
52
53
54
55
56
57
58
59
            								<div className="thumb thumb-rounded">
            									<img src="assets/images/download3.png" alt=""/>
            								</div>
          						    	<div className="caption text-center">
          						    		<h6 className="text-semibold no-margin">Teachers <small className="display-block">Click to view</small></h6>
          						    	</div>
          								</Link>
          					    </div>
          						</div>
691a06c2f   ajaiprakash   Staff profile
60
61
62
63
64
65
66
67
68
69
70
71
                      <div className="col-lg-3 col-md-6">
          							<div className="thumbnail">
          								<Link to="/parents" >
            								<div className="thumb thumb-rounded">
            									<img src="assets/images/download3.png" alt=""/>
            								</div>
          						    	<div className="caption text-center">
          						    		<h6 className="text-semibold no-margin">Parents <small className="display-block">Click to view</small></h6>
          						    	</div>
          								</Link>
          					    </div>
          						</div>
52c4c75df   Deepak   fixed admin compo...
72
73
74
75
76
          					</div>
  				        </div>
              </div>
            </div>
          </div>
52c4c75df   Deepak   fixed admin compo...
77
78
79
80
81
        </div>
      );
    };
  
  };