AdminLayout.js
2.67 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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 { 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="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>
</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>
</div>
</div>
</div>
);
};
};