Blame view

imports/client/views/org/admin/app/AdminLayout.js 2.67 KB
d532f2f02   Deepak   made changes in r...
1
2
3
4
5
6
7
8
  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';
d532f2f02   Deepak   made changes in r...
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  // 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 (
2a68c3b8e   Deepak   removed header menus
23
24
25
26
27
28
        <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="" />
d532f2f02   Deepak   made changes in r...
29
                </div>
2a68c3b8e   Deepak   removed header menus
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
                <div className="caption text-center">
                  <h6 className="text-semibold no-margin">Students <small className="display-block">Click to view</small></h6>
                </div>
              </Link>
            </div>
          </div>
          <div className="col-lg-3 col-md-6">
            <div className="thumbnail">
              <Link to="/staff" >
                <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>
          <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>
d532f2f02   Deepak   made changes in r...
58
59
60
            </div>
          </div>
        </div>
d532f2f02   Deepak   made changes in r...
61
62
63
64
      );
    };
  
  };