forked from UFRBuild/SIGAAGrid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
127 lines (117 loc) · 4.32 KB
/
Copy pathdashboard.html
File metadata and controls
127 lines (117 loc) · 4.32 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- Imports -->
<link rel="stylesheet" href="css/material.min.css">
<script src="js/material.min.js"></script>
<script src="js/dashboard.js"></script>
<script src="js/jquery.min.js"></script>
<!-- Scripts -->
<script src="js/jquery-2.0.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- Cascading Style Sheets -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/popup.css" rel="stylesheet" media="screen">
</head>
<body >
<div >
<div class="">
<!-- Square card -->
<style>
.demo-card-square.mdl-card {
padding-bottom: 6px;
width: 100%;
height: 100%;
}
.demo-card-square > .mdl-card__title {
color: #fff;
background: bottom right 15% no-repeat #46B6AC;
inline-block;
padding-right: 3px;
}
.mdl-card__supporting-text2 {
font-size: 12px;
}
.mdl-card__supporting-text3 {
font-size: 13px;
}
</style>
<!-- Uses a header that scrolls with the text, rather than staying
locked at the top -->
<div class="mdl-layout mdl-js-layout">
<header class="mdl-layout__header mdl-layout__header--scroll">
<div class="mdl-layout__header-row">
<!-- Title -->
<span class="mdl-layout-title">SIGAA Grid - Painel</span>
<!-- Add spacer, to align navigation to the right -->
<div class="mdl-layout-spacer"></div>
<!-- Navigation -->
<a class="mdl-navigation__link" href="#myDynamicTable">Visualizar</a>
<a class="mdl-navigation__link" id="aboutApp">Sobre</a>
<nav class="mdl-navigation">
</nav>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">SIGAA Grid</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="">Atualizar</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content">
<div class="demo-grid-ruler mdl-grid ">
<div class="mdl-cell mdl-cell--8-col ">
<div class"mdl-cell mdl-cell--8-col" id="myDynamicTable" ></div>
</div>
<div class="mdl-cell mdl-cell--4-col fl-11">
<div id="load_teste" class="mdl-card__supporting-text mdl-card mdl-shadow--6dp">
<h5><b>Informações:</b></h5>
<label class="" >
<p class="mdl-checkbox__label">Componentes:<span style="cursor:pointer" class="mdl-badge material-icons" id="contador_cmp" data-badge="0">event_note</span>
Choques:<span style="cursor:pointer" class="mdl-badge material-icons" id="contador_conflito" data-badge="0">event_busy </span></p>
</label>
<h5><b>Horários:</b></h5>
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" >
<input type="checkbox" id="check_manha" class="mdl-checkbox__input" />
<p class="mdl-checkbox__label">Manhã</p>
</label>
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" >
<input type="checkbox" id="check_tarde" class="mdl-checkbox__input" />
<p class="mdl-checkbox__label">Tarde</p>
</label>
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" >
<input type="checkbox" id="check_noite" class="mdl-checkbox__input" />
<p class="mdl-checkbox__label">Noite</p>
</label>
<div class="">
<!-- List with avatar and controls -->
<style>
.demo-list-control {
width: 360px;
}
.demo-list-radio {
display: inline;
}
</style>
<h5><b>Docentes:</b></h5>
<div id="myDynamicTable_prof" ></div>
</div>
</div>
</div>
</div>
</div>
</main>
<div class="fixed-bottom">
<footer class="mdl-mini-footer mdl-shadow--2dp">
<address class="my_label">
<h5 >SIGAA Grid</h5>
<strong>Versão: 1.0 Beta</strong>
<strong>© 2018 - Marcos Bomfim </strong>
</address>
</footer>
</div>
</div>
</body>
</html>