18 <!-- Script to view/hide -->
19 <script type=
"text/javascript">
21 function toggle_visibility(
id) {
22 var e = document.getElementById(
id);
23 if(e.style.display ==
'block')
24 e.style.display =
'none';
26 e.style.display =
'block';
32 <div <?php echo $this->any_inv(); ?> >
34 <h3> You Have No Invitations </h3>
37 <div <?php echo $this->author_inv(); ?> >
38 <h1> Authoring Invitations </h1>
41 <a href=
"#" <?php echo $this->author_pending(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('pending'); return false;">
42 <h3>Pending Invitations</h3>
44 <div
id=
"pending" style=
"display:none";>
46 $this->view_pending_authoring_invitations();
50 <a href=
"#" <?php echo $this->author_accepted(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('accepted'); return false;">
51 <h3>Accepted Invitations</h3>
53 <div
id=
"accepted" style=
"display:none";>
55 $this->view_accepted_authoring_invitations();
59 <a href=
"#" <?php echo $this->author_rejected(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('rejected'); return false;">
60 <h3>Rejected Invitations</h3>
62 <div
id=
"rejected" style=
"display:none";>
64 $this->view_rejected_authoring_invitations();
68 <div <?php echo $this->author_inv(); ?> >
73 <div <?php echo $this->referee_inv(); ?> >
74 <h1> Refereeing Invitations </h1>
77 <a href=
"#" <?php echo $this->referee_pending(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('pending_ref'); return false;">
78 <h3>Pending Invitations</h3>
80 <div
id=
"pending_ref" style=
"display:none";>
82 $this->view_pending_refereeing_invitations();
86 <a href=
"#" <?php echo $this->referee_accepted(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('accepted_ref'); return false;">
87 <h3>Accepted Invitations</h3>
89 <div
id=
"accepted_ref" style=
"display:none";>
91 $this->view_accepted_refereeing_invitations();
95 <a href=
"#" <?php echo $this->referee_rejected(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('rejected_ref'); return false;">
96 <h3>Rejected Invitations</h3>
98 <div
id=
"rejected_ref" style=
"display:none";>
100 $this->view_rejected_refereeing_invitations();
104 <div <?php echo $this->referee_inv(); ?> >
109 <div <?php echo $this->attend_inv(); ?> >
110 <h1> Attendance Invitations </h1>
113 <a href=
"#" <?php echo $this->attend_pending(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('pending_att'); return false;">
114 <h3>Pending Invitations</h3>
116 <div
id=
"pending_att" style=
"display:none;">
118 $this->view_pending_attendance_invitations();
122 <a href=
"#" <?php echo $this->attend_accepted(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('accepted_att'); return false;">
123 <h3>Accepted Invitations</h3>
125 <div
id=
"accepted_att" style=
"display:none";>
127 $this->view_accepted_attendance_invitations();
131 <a href=
"#" <?php echo $this->attend_rejected(); ?> style=
"text-decoration: none" onclick=
"toggle_visibility('rejected_att'); return false;">
132 <h3>Rejected Invitations</h3>
134 <div
id=
"rejected_att" style=
"display:none;">
136 $this->view_rejected_attendance_invitations();