This repository has been archived by the owner on Aug 28, 2019. It is now read-only.
forked from ndlibersa/resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
queue.php
83 lines (60 loc) · 2.71 KB
/
queue.php
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
<?php
/*
**************************************************************************************************************************
** CORAL Resources Module v. 1.0
**
** Copyright (c) 2010 University of Notre Dame
**
** This file is part of CORAL.
**
** CORAL is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
**
** CORAL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License along with CORAL. If not, see <http://www.gnu.org/licenses/>.
**
**************************************************************************************************************************
*/
include_once 'directory.php';
$pageTitle='My Queue';
include 'templates/header.php';
//set referring page
$_SESSION['ref_script']=$currentPage;
?>
<table class='headerTable'>
<tr>
<td style='margin:0;padding:0;text-align:left;'>
<table style='width:100%; margin:0 0 11px 0;padding:0;'>
<tr style='vertical-align:top'>
<td>
<span class="headerText">My Queue</span>
<br />
</td>
</tr>
</table>
<table style='width:890px; text-align:left; vertical-align:top;'>
<tr>
<td style='width:170px;vertical-align:top;'>
<table class='queueMenuTable' style='width:170px;'>
<tr><td><div class='queueMenuLink'><a href='javascript:void(0);' id='OutstandingTasks'>Outstanding Tasks</a></div><span class='span_OutstandingTasksNumber smallGreyText' style='clear:right; margin-left:10px;'></span></td></tr>
<tr><td><div class='queueMenuLink'><a href='javascript:void(0);' id='SavedRequests'>Saved Requests</a></div><span class='span_SavedRequestsNumber smallGreyText' style='clear:right; margin-left:10px;'></span></td></tr>
<tr><td><div class='queueMenuLink'><a href='javascript:void(0);' id='SubmittedRequests'>Submitted Requests</a></div><span class='span_SubmittedRequestsNumber smallGreyText' style='clear:right; margin-left:10px;'></span></td></tr>
</table>
</td>
<td class='queueRightPanel' style='width:720px;margin:0;'>
<div id='div_QueueContent'>
<img src = "images/circle.gif" />Loading...
</div>
<div style='margin-top:5px;' class='darkRedText' id='div_error'></div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br />
<br />
<script type="text/javascript" src="js/queue.js"></script>
<?php
include 'templates/footer.php';
?>