Changeset 1223 for WAeUP_SRP/trunk
- Timestamp:
- 7 Jan 2007, 11:38:42 (18 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_student
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_student/getMemberInfo.py
r1221 r1223 44 44 info['app'] = student.application 45 45 info['per_doc'] = student.personal.getContent() 46 info['app_doc'] = student.personal.getContent() 46 info['app_doc'] = student.application.getContent() 47 info['clear_doc'] = student.clearance.getContent() 47 48 #info['password'] = member.getPassword() 49 50 msg=""" 51 Fullname: %s 52 Student Id: %s 53 Matriculation Number: %s 54 JAMB Registration Number: %s 55 Email address in application data: %s 56 Email address in personal data: %s 57 Date of Birth: %s 58 Password: 59 60 """ 61 62 info['message'] = msg % ( 63 student.Title(), 64 student_id, 65 info['clear_doc'].matric_no, 66 info['app_doc'].jamb_reg_no, 67 info['app_doc'].app_email, 68 info['per_doc'].email, 69 info['clear_doc'].birthday, 70 ) 71 48 72 return info -
WAeUP_SRP/trunk/skins/waeup_student/mail_password_form.pt
r1220 r1223 9 9 10 10 <span tal:condition="info"> 11 <h3> Contact Student</h3>11 <h3>Mail Authentification Data</h3> 12 12 <br /> 13 13 <span tal:condition="not:info/per_doc/email"> … … 43 43 <tr> 44 44 <td> 45 <strong> Type of Rejection: </strong>45 <strong>Subject Line: </strong> 46 46 </td> 47 47 <td> 48 48 <select name="probtype" class="boxgreen" id="probtype"> 49 <option>Your SRP Member Record</option> 49 <option>Your SRP Authentification Data</option> 50 <option>Your Password</option> 51 <option>Your Application PIN</option> 52 <option>Your Student Id</option> 50 53 </select> 51 54 </td> … … 56 59 </td> 57 60 <td> 58 <textarea name="commt" rows="10" cols="60" id="commt" tal:content="info/ student/Title">61 <textarea name="commt" rows="10" cols="60" id="commt" tal:content="info/message"> 59 62 </textarea> 60 63 </td>
Note: See TracChangeset for help on using the changeset viewer.