This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditArticleRequest.html
53 lines (45 loc) · 2.39 KB
/
EditArticleRequest.html
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>ILLiad - Edit Article Request</title>
<#INCLUDE filename="include_head.html">
</head>
<body>
<#INCLUDE filename="include_header.html">
<#INCLUDE filename="include_menu.html">
<div class="container">
<main id="content" aria-label="Content" class="display-none">
<form action="illiad.dll" method="post" name="EditArticleRequest">
<input type="hidden" name="ILLiadForm" value="EditArticleRequest">
<input type="hidden" name="Username" value="<#PARAM name="Username">">
<input type="hidden" name="SessionID" value="<#PARAM name="SessionID">">
<input type="hidden" name="TransactionNumber" value="<#PARAM name='TransactionNumber'>">
<input type="hidden" name="ItemInfo1" id="ItemInfo1" value="<#PARAM name='ItemInfo1'>">
<#FORMSTATE>
<div class="mainContent">
<fieldset>
<h2 class="page-header" id="pageHeader">Edit Copy Request</h2>
<#INCLUDE filename="include_edit_article_request_fields.html">
<#INCLUDE filename="include_request_cited.html">
<#INCLUDE filename="include_request_buttons.html">
</fieldset>
</div>
</form>
</main>
<#INCLUDE filename="include_footer.html">
</div>
<#INCLUDE filename='include_js_helpers.html'> <!--- includes helper javascript functions for interacting with the page's html -->
<script>
$(document).ready(function(){
var docDeliveryStatus = $('input#ItemInfo1').attr('value');
if ((docDeliveryStatus == 'DocDelivery') || (docDeliveryStatus == 'DocDeliveryPublic' )){
hideElement('#requestCited'); // $('#requestCited').css('display', 'none');
unHideElement('#formGroup-ItemInfo2'); //$('label[for="ItemInfo2"]').css('display', 'block');
$('#pageHeader').html("Edit Document Delivery Request -- photocopy");
$('#pageHeader').after('<p id="pageIntroduction">Edit your document delivery request here. You must be a faculty member or graduate student to use this service.</p>');
}
unHideElement('#content'); // $('#content').removeClass('display-none'); // show content
});
</script>
</body>
</html>