Changeset 1455 for WAeUP_SRP/trunk/skins/waeup_student
- Timestamp:
- 21 Feb 2007, 16:46:50 (18 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_student
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_student/contact_student_form.pt
r1220 r1455 2 2 <metal:main fill-slot="main" 3 3 tal:define="member python:context.portal_membership.getAuthenticatedMember(); 4 info context/get ApplicationInfo;4 info context/getStudentBaseInfo; 5 5 "> 6 6 <span tal:condition="not: info"> … … 11 11 <h3>Contact Student</h3> 12 12 <br /> 13 <span tal:condition="not:info/ app_doc/app_email">13 <span tal:condition="not:info/student/email"> 14 14 Sorry, the student did not provide an email address. 15 15 </span> 16 <span tal:condition="info/ app_doc/app_email">16 <span tal:condition="info/student/email"> 17 17 <form id="form1" name="form1" method="post" action="mail2student"> 18 18 … … 22 22 tal:attributes="value python:member.getProperty('email',None)"/> 23 23 <input type="hidden" name="student_email" type="text" id="student_email" 24 tal:attributes="value info/ app_doc/app_email"/>24 tal:attributes="value info/student/email"/> 25 25 26 26 <table width="100%" border="0" cellspacing="5" cellpadding="0"> … … 30 30 </td> 31 31 <td> 32 <span tal:content="info/student/ Title" />32 <span tal:content="info/student/name" /> 33 33 </td> 34 34 </tr> … … 38 38 </td> 39 39 <td> 40 <span tal:content="info/ app_doc/app_email" />40 <span tal:content="info/student/email" /> 41 41 </td> 42 42 </tr> -
WAeUP_SRP/trunk/skins/waeup_student/mail_password_form.pt
r1448 r1455 28 28 <td> 29 29 <span tal:condition="info/student/Title" tal:content="info/student/Title" /> 30 <span tal:condition="not:info/student/Title"> na</span>30 <span tal:condition="not:info/student/Title">N/A</span> 31 31 </td> 32 32 </tr> -
WAeUP_SRP/trunk/skins/waeup_student/support_form.pt
r1161 r1455 1 <metal:html tal:define="info context/get ApplicationInfo;">1 <metal:html tal:define="info context/getStudentBaseInfo;"> 2 2 <span tal:condition="not: info"> 3 3 <span tal:content="here/illegal_view" /> … … 18 18 <td> 19 19 <input name="fullname" type="text" id="fullname" 20 tal:attributes="value info/student/ Title"/>20 tal:attributes="value info/student/name"/> 21 21 </td> 22 22 </tr> … … 27 27 <td> 28 28 <input name="email" type="text" id="email" 29 tal:attributes="value info/ app_doc/app_email"/>29 tal:attributes="value info/student/email"/> 30 30 </td> 31 31 </tr>
Note: See TracChangeset for help on using the changeset viewer.