-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
115 lines (97 loc) · 2.8 KB
/
admin.php
File metadata and controls
115 lines (97 loc) · 2.8 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
<php>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js">
</script>
<script src="admin-read.js">
</script>
<script src="https://use.fontawesome.com/4b7695557b.js">
</script>
<link href="appDecision.css" rel="stylesheet" type="text/css">
<link href="appDecisionRead.css" rel="stylesheet" type="text/css">
<title></title>
<script>
function aeCheckKey(ns_event, action, target_key, theForm){
var keypressed;
if(navigator.appName.indexOf("Microsoft") >= 0)
{
keypressed = event.keyCode;
}
else
{
keypressed = ns_event.which;
}
if(keypressed == target_key)
{
eval(action+'(theForm)');
}
}
function aeTrapEnter(ns_event, action, theForm){
aeCheckKey(ns_event, action, 13, theForm);
}
function saastaSubmitForm(formin)
{
if(formin.brownie == null)
{
alert('Form must define brownie field');
return;
}
formin.brownie.value = '{$brownie}';
formin.submit();
}
function saastaSubmitLink(formin, linkin)
{
formin.action=linkin;
saastaSubmitForm(formin);
}
document.domain = 'byu.edu';
</script>
<form name='headerform'>
<input type='hidden' name='brownie'>
</form>
<script>
function saveReaders()
{
document.getElementById('gldata').style.display = 'inline';
}
</script>
<form name='theform' method=POST>
<input type=hidden name=brownie value=''>
<input type=hidden name=c value=''>
<input type=hidden name=e value=''>
<input type=hidden name=read_note value=''>
<div class="wrapper">
<h1 class="gray header-select-left" id="reads">Reads</h1>
<h1 class="header-select-right" id="team-leader">Admin</h1>
<div class="gray sub-header">
Fall 2017 Application
</div>
<br>
<div class="full-header">
Read Pool Summary
</div>
<div class="left team-items" id="total-wrapper">
<p id="total-title">Team Total</p>
<p class="blue bold text" id="team-total">{$total_count}</p>
</div>
<div class="left team-items" id="total-read-wrapper">
<p id="queue-title">Team Queue</p>
<p class="blue bold text" id="team-queue">{$total_queue}</p>
</div>
<!--<div class="left team-items" id="total-read-week">
<p id="queue-title">Total Read This Week</p>
<p class="blue bold" id="team-queue">981</p>
</div>--><br>
<br>
{$table}
<br><br><br>
<br><br><br>
<div class="full-header">
Items for Your Attention
</div>
<div class="section">
{$attentionTable}
</div>
<br><br>
</div>
</form>
</html>