source: WAeUP_SRP/base/skins/waeup_student/objection_raised_form.pt @ 3169

Last change on this file since 3169 was 1783, checked in by Henrik Bettermann, 17 years ago
  • assertViewable removed and page templates adjusted, so that no traceback occurs.
  • 'Previous Session' action added
  • waeup_content_master.pt removed
  • and more
File size: 2.6 KB
Line 
1<metal:html tal:define="info options/info|context/getApplicationInfo;
2                        review_state info/review_state">
3  <span tal:condition="not: info">
4    <span tal:content="here/illegal_view" />
5  </span>
6<metal:block tal:condition="info">                        
7  <metal:body use-macro="here/main_template/macros/master">
8    <metal:main fill-slot="main">
9   
10      <div style="text-align: right"
11           tal:condition="python:review_state in ('admitted', 'clearance_pin_entered', 'clearance_requested', 'cleared', 'objection_raised',)">
12      <a href="" target="slip" tal:attributes="href string:admission_slip"
13          onclick="javascript:window.open('','slip','width=600, height=700, directories=no, toolbar=no, location=no, menubar=yes, scrollbars=yes, status=no, resizable=no, dependent=no')">
14          <img tal:attributes="src string:${here/portal_url}/actionicon_print.png" />
15          Admission Slip
16      </a>
17      </div>       
18   
19      <h3>You raised an objection, please explain why!</h3>
20     
21      <br />     
22     
23      <form id="form1" name="form1" method="post" action="mail2admin">
24      <input type="hidden" name="regno" type="text" id="regno"
25             tal:attributes="value info/id"/>
26      <input type="hidden" name="probtype" type="text" id="regno"
27             tal:attributes="value string:Objection Raised"/>             
28      <table width="100%" border="0" cellspacing="5" cellpadding="0">
29        <tr>
30          <td width="150px">
31             <strong>Full Name: </strong>
32          </td>
33          <td>
34             <input name="fullname" type="text" id="fullname" size="30"
35                    tal:attributes="value info/student/Title"/>
36          </td>
37        </tr>
38        <tr>
39          <td>
40             <strong>Email: </strong>
41          </td>
42          <td>
43             <input name="email" type="text" id="email"  size="30"
44                    tal:attributes="value info/app_doc/app_email"/>
45          </td>
46        </tr>
47        <tr>
48          <td valign="top">
49             <strong>Reason: </strong>
50          </td>
51          <td>
52             <textarea name="descr" rows="10" cols="60" id="descr"></textarea>
53          </td>
54        </tr>
55     
56        <tr>
57          <td>&nbsp;</td>
58          <td><input name="Submit" type="submit" class="standalone" value="Submit" /><br /><br /></td>
59        </tr>
60      </table>
61      </form>
62     
63     
64     
65     
66      <form action="." method="post" class="group">
67            <input type="submit" name="application_edit:method"
68                       class="context" value="Continue" />
69       </form>     
70    </metal:main>
71  </metal:body>
72</metal:block>     
73</metal:html>
Note: See TracBrowser for help on using the repository browser.