source: WAeUP_SRP/trunk/skins/waeup_student/objection_raised_view.pt @ 864

Last change on this file since 864 was 864, checked in by Henrik Bettermann, 18 years ago

contact form added to objection_raised_view

File size: 1.8 KB
Line 
1<metal:html tal:define="info options/info|context/getStudentInfo">
2  <metal:body use-macro="here/waeup_content_master/macros/master">
3    <metal:main fill-slot="main">
4      <h3>You raised an objection, please explain why!</h3>
5     
6      <br />     
7     
8      <form id="form1" name="form1" method="post" action="mail2admin">
9      <input type="hidden" name="regno" type="text" id="regno"
10             tal:attributes="value info/id"/>
11      <input type="hidden" name="probtype" type="text" id="regno"
12             tal:attributes="value string:Objection Raised"/>             
13      <table width="100%" border="0" cellspacing="5" cellpadding="0">
14        <tr>
15          <td width="150px">
16             <strong>Full Name: </strong>
17          </td>
18          <td>
19             <input name="fullname" type="text" id="fullname"
20                    tal:attributes="value info/student/Title"/>
21          </td>
22        </tr>
23        <tr>
24          <td>
25             <strong>Email: </strong>
26          </td>
27          <td>
28             <input name="email" type="text" id="email"
29                    tal:attributes="value info/app_doc/app_email"/>
30          </td>
31        </tr>
32        <tr>
33          <td valign="top">
34             <strong>Reason: </strong>
35          </td>
36          <td>
37             <textarea name="descr" rows="10" cols="60" id="descr"></textarea>
38          </td>
39        </tr>
40     
41        <tr>
42          <td>&nbsp;</td>
43          <td><input name="Submit" type="submit" class="standalone" value="Submit" /><br /><br /></td>
44        </tr>
45      </table>
46      </form>
47     
48     
49     
50     
51      <form action="." method="post" class="group">
52            <input type="submit" name="application_edit:method"
53                       class="context" value="Continue" />
54       </form>     
55    </metal:main>
56  </metal:body>
57</metal:html>
Note: See TracBrowser for help on using the repository browser.